From beaa4df2389af150a471c0e5542fd7d4b5f7258e Mon Sep 17 00:00:00 2001 From: jiasli <4003950+jiasli@users.noreply.github.com> Date: Wed, 11 Sep 2024 16:31:34 +0800 Subject: [PATCH] module-graph --- .../cli/command_modules/keyvault/_help.py | 8 +- .../cli/command_modules/keyvault/custom.py | 70 +- .../role/_msgrpah/_graph_client.py | 5 + .../azure/cli/command_modules/role/util.py | 80 + .../command_modules/servicefabric/custom.py | 23 +- ...d_secondary_node_type_add_remove_node.yaml | 14399 --- .../latest/recordings/test_node_type.yaml | 89073 ---------------- .../test_update_settings_and_reliability.yaml | 5 +- 8 files changed, 107 insertions(+), 103556 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/role/util.py delete mode 100644 src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_add_secondary_node_type_add_remove_node.yaml delete mode 100644 src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/_help.py b/src/azure-cli/azure/cli/command_modules/keyvault/_help.py index 156ea210747..2ab162d2fc0 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/_help.py +++ b/src/azure-cli/azure/cli/command_modules/keyvault/_help.py @@ -238,7 +238,13 @@ helps['keyvault create'] = """ type: command short-summary: Create a Vault or HSM. -long-summary: If `--enable-rbac-authorization` is not specified, then default permissions are created for the current user or service principal unless the `--no-self-perms` flag is specified. +long-summary: >- + RBAC authorization is enabled by default. If `--enable-rbac-authorization` is manually specified to `false` and + `--no-self-perms` flag is not specified, default permissions are created for the current user or service principal. + + + If you want to assign the default permission, you have to change the default subscription with `az account set` + first, instead of using `--subscription`. examples: - name: Create a key vault with network ACLs specified (use --network-acls to specify IP and VNet rules by using a JSON string). diff --git a/src/azure-cli/azure/cli/command_modules/keyvault/custom.py b/src/azure-cli/azure/cli/command_modules/keyvault/custom.py index 735a0e36c5b..2f9ea33c8b2 100644 --- a/src/azure-cli/azure/cli/command_modules/keyvault/custom.py +++ b/src/azure-cli/azure/cli/command_modules/keyvault/custom.py @@ -305,60 +305,6 @@ def list_vault(client, resource_group_name=None): return list(vault_list) -def _get_current_user_object_id(graph_client): - current_user = graph_client.signed_in_user_get() - return current_user['id'] - - -def _get_object_id_by_spn(graph_client, spn): - accounts = list(graph_client.service_principal_list( - filter="servicePrincipalNames/any(c:c eq '{}')".format(spn))) - if not accounts: - logger.warning("Unable to find user with spn '%s'", spn) - return None - if len(accounts) > 1: - logger.warning("Multiple service principals found with spn '%s'. " - "You can avoid this by specifying object id.", spn) - return None - return accounts[0]['id'] - - -def _get_object_id_by_upn(graph_client, upn): - accounts = list(graph_client.user_list(filter="userPrincipalName eq '{}'".format(upn))) - if not accounts: - logger.warning("Unable to find user with upn '%s'", upn) - return None - if len(accounts) > 1: - logger.warning("Multiple users principals found with upn '%s'. " - "You can avoid this by specifying object id.", upn) - return None - return accounts[0]['id'] - - -def _get_object_id_from_subscription(graph_client, subscription): - if not subscription: - return None - - if subscription['user']: - if subscription['user']['type'] == 'user': - return _get_object_id_by_upn(graph_client, subscription['user']['name']) - if subscription['user']['type'] == 'servicePrincipal': - return _get_object_id_by_spn(graph_client, subscription['user']['name']) - logger.warning("Unknown user type '%s'", subscription['user']['type']) - else: - logger.warning('Current credentials are not from a user or service principal. ' - 'Azure Key Vault does not work with certificate credentials.') - return None - - -def _get_object_id(graph_client, subscription=None, spn=None, upn=None): - if spn: - return _get_object_id_by_spn(graph_client, spn) - if upn: - return _get_object_id_by_upn(graph_client, upn) - return _get_object_id_from_subscription(graph_client, subscription) - - def _create_network_rule_set(cmd, bypass=None, default_action=None): NetworkRuleSet = cmd.get_models('NetworkRuleSet', resource_type=ResourceType.MGMT_KEYVAULT) NetworkRuleBypassOptions = cmd.get_models('NetworkRuleBypassOptions', resource_type=ResourceType.MGMT_KEYVAULT) @@ -671,8 +617,6 @@ def create_vault(cmd, client, # pylint: disable=too-many-locals, too-many-state # if client.get raise exception, we can take it as no existing vault found # just continue the normal creation process pass - from azure.cli.core._profile import Profile, _TENANT_ID - from azure.cli.command_modules.role import graph_client_factory, GraphError VaultCreateOrUpdateParameters = cmd.get_models('VaultCreateOrUpdateParameters', resource_type=ResourceType.MGMT_KEYVAULT) @@ -685,8 +629,8 @@ def create_vault(cmd, client, # pylint: disable=too-many-locals, too-many-state Sku = cmd.get_models('Sku', resource_type=ResourceType.MGMT_KEYVAULT) VaultProperties = cmd.get_models('VaultProperties', resource_type=ResourceType.MGMT_KEYVAULT) + from azure.cli.core._profile import Profile, _TENANT_ID profile = Profile(cli_ctx=cmd.cli_ctx) - graph_client = graph_client_factory(cmd.cli_ctx) subscription = profile.get_subscription(subscription=cmd.cli_ctx.data.get('subscription_id', None)) tenant_id = subscription[_TENANT_ID] @@ -751,10 +695,8 @@ def create_vault(cmd, client, # pylint: disable=too-many-locals, too-many-state StoragePermissions.getsas, StoragePermissions.deletesas]) - try: - object_id = _get_current_user_object_id(graph_client) - except GraphError: - object_id = _get_object_id(graph_client, subscription=subscription) + from azure.cli.command_modules.role.util import get_current_identity_object_id + object_id = get_current_identity_object_id(cmd.cli_ctx) if not object_id: raise CLIError('Cannot create vault.\nUnable to query active directory for information ' 'about the current user.\nYou may try the --no-self-perms flag to ' @@ -901,10 +843,8 @@ def update_hsm(cmd, instance, def _object_id_args_helper(cli_ctx, object_id, spn, upn): if not object_id: - from azure.cli.command_modules.role import graph_client_factory - - graph_client = graph_client_factory(cli_ctx) - object_id = _get_object_id(graph_client, spn=spn, upn=upn) + from azure.cli.command_modules.role.util import get_object_id + object_id = get_object_id(cli_ctx, spn=spn, upn=upn) if not object_id: raise CLIError('Unable to get object id from principal name.') return object_id diff --git a/src/azure-cli/azure/cli/command_modules/role/_msgrpah/_graph_client.py b/src/azure-cli/azure/cli/command_modules/role/_msgrpah/_graph_client.py index 5094e8df6d2..c4152a263d6 100644 --- a/src/azure-cli/azure/cli/command_modules/role/_msgrpah/_graph_client.py +++ b/src/azure-cli/azure/cli/command_modules/role/_msgrpah/_graph_client.py @@ -19,6 +19,11 @@ class GraphClient: GraphClient should NEVER be instantiated directly, but always through the client factory azure.cli.command_modules.role.graph_client_factory. + This class internally calls azure.cli.core.util.send_raw_request to make REST API calls. + + The authentication is based on the implementation of send_raw_request, so the default account's + auth context is used (the one shown by `az account show`). + For full documentation, see doc/microsoft_graph_client.md in this repo. """ diff --git a/src/azure-cli/azure/cli/command_modules/role/util.py b/src/azure-cli/azure/cli/command_modules/role/util.py new file mode 100644 index 00000000000..de7310ed1e1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/role/util.py @@ -0,0 +1,80 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +from knack.log import get_logger + +logger = get_logger(__name__) + + +def _get_current_user_object_id(graph_client): + # Calling this API with a service principal raises GraphError: + # /me request is only valid with delegated authentication flow. + current_user = graph_client.signed_in_user_get() + return current_user['id'] + + +def _get_object_id_by_spn(graph_client, spn): + accounts = list(graph_client.service_principal_list(filter="servicePrincipalNames/any(c:c eq '{}')".format(spn))) + # 2+ matches should never happen, so we only check 'no match' here + if not accounts: + logger.warning("Unable to find service principal with spn '%s'", spn) + return None + return accounts[0]['id'] + + +def _get_object_id_by_upn(graph_client, upn): + accounts = list(graph_client.user_list(filter="userPrincipalName eq '{}'".format(upn))) + # 2+ matches should never happen, so we only check 'no match' here + if not accounts: + logger.warning("Unable to find user with upn '%s'", upn) + return None + return accounts[0]['id'] + + +def _get_object_id_from_subscription(graph_client, subscription): + if subscription['user']['type'] == 'user': + return _get_object_id_by_upn(graph_client, subscription['user']['name']) + if subscription['user']['type'] == 'servicePrincipal': + return _get_object_id_by_spn(graph_client, subscription['user']['name']) + return None + + +def _get_object_id(graph_client, spn=None, upn=None): + if spn: + return _get_object_id_by_spn(graph_client, spn) + if upn: + return _get_object_id_by_upn(graph_client, upn) + return None + + +def get_object_id(cli_ctx, spn=None, upn=None): + from azure.cli.command_modules.role import graph_client_factory + graph_client = graph_client_factory(cli_ctx) + return _get_object_id(graph_client, spn=spn, upn=upn) + + +def get_current_identity_object_id(cli_ctx): + """This function tries to get the current identity's object ID following below steps: + + 1. First try to resolve with /me API: https://learn.microsoft.com/en-us/graph/api/user-get + 2. If failed, try to resolve with either + - /users API: https://learn.microsoft.com/en-us/graph/api/user-list + - /servicePrincipals API: https://learn.microsoft.com/en-us/graph/api/serviceprincipal-list + + If all of these attempts fail, return None. + """ + from azure.cli.command_modules.role import graph_client_factory, GraphError + graph_client = graph_client_factory(cli_ctx) + + try: + return _get_current_user_object_id(graph_client) + except GraphError: + from azure.cli.core._profile import Profile + profile = Profile(cli_ctx) + # To align with _get_current_user_object_id, only look up the current upn/spn, so + # cli_ctx.data['subscription_id'] should not be used in get_subscription. + # Otherwise, it may result in looking up a upn/spn different from the current login context. + subscription = profile.get_subscription() + return _get_object_id_from_subscription(graph_client, subscription) 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 010b1c423d4..cf2ee6e46af 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py @@ -21,7 +21,6 @@ from azure.cli.core.util import CLIError, get_file_json, b64_to_hex, sdk_no_wait from azure.cli.core.commands import LongRunningOperation -from azure.graphrbac import GraphRbacManagementClient 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 @@ -1565,16 +1564,6 @@ def _create_keyvault(cmd, enabled_for_disk_encryption=None, enabled_for_template_deployment=None, no_self_perms=None, tags=None): - - from azure.cli.core._profile import Profile - from azure.graphrbac.models import GraphErrorException - profile = Profile(cli_ctx=cli_ctx) - cred, _, tenant_id = profile.get_login_credentials( - resource=cli_ctx.cloud.endpoints.active_directory_graph_resource_id) - graph_client = GraphRbacManagementClient(cred, - 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, 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') @@ -1585,6 +1574,11 @@ def _create_keyvault(cmd, 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') + from azure.cli.core._profile import Profile, _TENANT_ID + profile = Profile(cli_ctx=cmd.cli_ctx) + subscription = profile.get_subscription(subscription=cmd.cli_ctx.data.get('subscription_id', None)) + tenant_id = subscription[_TENANT_ID] + if not sku: sku = KeyVaultSkuName.standard.value @@ -1619,10 +1613,9 @@ def _create_keyvault(cmd, CertificatePermissions.deleteissuers, CertificatePermissions.manageissuers, CertificatePermissions.recover]) - try: - object_id = _get_current_user_object_id(graph_client) - except GraphErrorException: - object_id = _get_object_id(graph_client, subscription=subscription) + + from azure.cli.command_modules.role.util import get_current_identity_object_id + object_id = get_current_identity_object_id(cli_ctx) if not object_id: raise CLIError('Cannot create vault.\n' 'Unable to query active directory for information ' 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 deleted file mode 100644 index 9a8d21eb050..00000000000 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_add_secondary_node_type_add_remove_node.yaml +++ /dev/null @@ -1,14399 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --certificate-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-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","test":"test_add_secondary_node_type_add_remove_node","date":"2024-05-03T04:44:59Z","module":"servicefabric"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '397' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:45:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5CE6AC5FE6114BD19DF3155ACEF1EB64 Ref B: MNZ221060618045 Ref C: 2024-05-03T04:45:07Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-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","test":"test_add_secondary_node_type_add_remove_node","date":"2024-05-03T04:44:59Z","module":"servicefabric"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '397' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:45:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4CA131BBFC6541BDB1A9682E6C37E61E Ref B: MNZ221060610027 Ref C: 2024-05-03T04:45:07Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh?api-version=2023-02-01 - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh'' - 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: - - Fri, 03 May 2024 04:45:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - x-msedge-ref: - - 'Ref A: F0D4DB429F234149A48670E6C8CF805B Ref B: MNZ221060610025 Ref C: 2024-05-03T04:45:08Z' - status: - code: 404 - message: Not Found -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.9.13 (Windows-10-10.0.22631-SP0) msrest/0.7.1 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":"7c25af64-9686-4f2b-8350-66e7f1cd6144","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["795f6fe0-cc4d-4773-b050-5dde4dc704c9"],"skuId":"99cc8282-2f74-4954-83b7-c6a9a1999067"},{"disabledPlans":[],"skuId":"639dec6b-bb19-468b-871c-c5c441c4b0cb"},{"disabledPlans":["acbca54f-c771-423b-a476-6d7a98cbbcec"],"skuId":"36a0f3b3-adb5-49ea-bf66-762134cf063a"},{"disabledPlans":["a6e407da-7411-4397-8a2e-d9b52780849e","d9923fe3-a2de-4d29-a5be-e3e83bb786be","2a4baa0e-5e99-4c38-b1f2-6864960f1bd1"],"skuId":"a929cd4d-8672-47c9-8664-159c1f322ba8"},{"disabledPlans":["7162bd38-edae-4022-83a7-c5837f951759","b622badb-1b45-48d5-920f-4b27a2c0996c","b74d57b2-58e9-484a-9731-aeccbba954f0"],"skuId":"61902246-d7cb-453e-85cd-53ee28eec138"},{"disabledPlans":["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":[],"skuId":"b30411f5-fea1-4a59-9ad9-3db7c7ead579"},{"disabledPlans":[],"skuId":"4a51bf65-409c-4a91-b845-1121b571cc9d"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"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":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2024-04-27T22:09:15Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2024-04-17T20:02:32Z","capabilityStatus":"Enabled","service":"ccibotsprod","servicePlanId":"fe6c28b3-d468-44ea-bbd0-a10a5167435c"},{"assignedTimestamp":"2024-03-07T15:17:12Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"795aec3a-93a2-45be-92c4-47b9a76340ca"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"Bing","servicePlanId":"0d0c0d31-fae7-41f2-b909-eaf4d7f26dba"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"a1ace008-72f3-4ea0-8dac-33b3a23a2472"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"DefenderforIoT","servicePlanId":"99cd49a9-0e54-4e07-aea1-d8d9f5f704f5"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"Chapter5FluidApp","servicePlanId":"c4b8c31a-fb44-4c65-9837-a21f55fcabda"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"0aedf20c-091d-420b-aadf-30c042609612"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"MicrosoftEndpointDLP","servicePlanId":"64bfac92-2b17-4482-b5e5-a0304429de3e"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"bf6f5520-59e3-4f82-974b-7dbbc4fd27c7"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"Office365InsiderRisk","servicePlanId":"d587c7a3-bda9-4f99-8776-9bcf59c84f75"},{"assignedTimestamp":"2024-02-14T15:23:34Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"d2d51368-76c9-4317-ada2-a12c004c432f"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"a62f8878-de10-42f3-b68f-6149a25ceb97"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"3afa0b92-83ef-41c1-8d64-586ab882a951"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"931e4a88-a67f-48b5-814f-16a5f1e6028d"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"b95945de-b3bd-46db-8437-f2beb6ea2347"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"3f30311c-6b1e-48a4-ab79-725b469da960"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"82d30987-df9b-4486-b146-198b21d164c7"},{"assignedTimestamp":"2024-01-30T16:11:56Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"89f1c4c8-0878-40f7-804d-869c9128ab5d"},{"assignedTimestamp":"2024-01-13T03:08:53Z","capabilityStatus":"Deleted","service":"MixedRealityCollaborationServices","servicePlanId":"acbca54f-c771-423b-a476-6d7a98cbbcec"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"1315ade1-0410-450d-b8e3-8050e6da320f"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"816971f4-37c5-424a-b12b-b56881f402e7"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"MSRemoteAssist","servicePlanId":"4f4c7800-298a-4e22-8867-96b17850d4dd"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"Microsoft.ProjectBabylon","servicePlanId":"c948ea65-2053-4a5a-8a62-9eaaaf11b522"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"MicrosoftDynamics365MRGuidesCoreClient","servicePlanId":"0b2c029c-dca0-454a-a336-887285d6ef07"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"MixedRealityCollaborationServices","servicePlanId":"f0ff6ac6-297d-49cd-be34-6dfef97f0c28"},{"assignedTimestamp":"2024-01-13T03:06:09Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"8c66ef8a-177f-4c0d-853c-d4f219331d09"},{"assignedTimestamp":"2023-11-15T21:58:23Z","capabilityStatus":"Enabled","service":"VivaPulsePROD","servicePlanId":"b29b2eba-821a-4a32-8a5e-791f430a88d5"},{"assignedTimestamp":"2023-10-09T13:56:27Z","capabilityStatus":"Enabled","service":"CustomerLockbox","servicePlanId":"3ec18638-bd4c-4d3b-8905-479ed636b83e"},{"assignedTimestamp":"2023-09-26T13:35:01Z","capabilityStatus":"Enabled","service":"MixedRealityCollaborationServices","servicePlanId":"3efbd4ed-8958-4824-8389-1321f8730af8"},{"assignedTimestamp":"2023-09-26T13:35:01Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e6afcc4a-2eb2-4bc7-8345-ca02bb7a367f"},{"assignedTimestamp":"2023-09-26T13:35:01Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"f022b139-a6f0-4193-aa7f-5e6b86f4aaf6"},{"assignedTimestamp":"2023-09-26T13:35:01Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4a2cc7a8-4c0f-4740-ae0b-70cdc445bb9b"},{"assignedTimestamp":"2023-09-26T13:35:01Z","capabilityStatus":"Enabled","service":"MixedRealityCollaborationServices","servicePlanId":"dcf9d2f4-772e-4434-b757-77a453cfbc02"},{"assignedTimestamp":"2023-08-30T23:28:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"a4c6cf29-1168-4076-ba5c-e8fe0e62b17e"},{"assignedTimestamp":"2023-08-15T17:57:46Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"3eeb8536-fecf-41bf-a3f8-d6f17a9f3efc"},{"assignedTimestamp":"2023-08-15T17:57:46Z","capabilityStatus":"Enabled","service":"OnlineService","servicePlanId":"75317150-0539-40a7-a034-ec352928e568"},{"assignedTimestamp":"2023-07-23T14:24:11Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2023-07-23T14:24:11Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"711413d0-b36e-4cd4-93db-0a50a4ab7ea3"},{"assignedTimestamp":"2023-07-23T14:24:11Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2023-07-23T14:24:11Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2023-06-16T03:11:25Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"c815c93d-0759-4bb8-b857-bc921a71be83"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"f8b44f54-18bb-46a3-9658-44ab58712968"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"0504111f-feb8-4a3c-992a-70280f9a2869"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"cc8c0802-a325-43df-8cba-995d0c6cb373"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"OrgExplorer","servicePlanId":"a8564d77-48d8-4eb3-bfad-2e14bbe05a69"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"9104f592-f2a7-4f77-904c-ca5a5715883f"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"78b58230-ec7e-4309-913c-93a45cc4735b"},{"assignedTimestamp":"2023-06-16T00:31:36Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f6de4823-28fa-440b-b886-4783fa86ddba"},{"assignedTimestamp":"2023-04-08T07:07:32Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"bb73f429-78ef-4ff2-83c8-722b04c3e7d1"},{"assignedTimestamp":"2023-03-17T13:04:11Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"a82fbf69-b4d7-49f4-83a6-915b2cf354f4"},{"assignedTimestamp":"2023-03-17T10:32:48Z","capabilityStatus":"Enabled","service":"LearningAppServiceInTeams","servicePlanId":"b76fb638-6ba6-402a-b9f9-83d28acb3d86"},{"assignedTimestamp":"2022-12-19T00:23:06Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"43304c6a-1d4e-4e0b-9b06-5b2a2ff58a90"},{"assignedTimestamp":"2022-12-19T00:23:06Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"c244cc9e-622f-4576-92ea-82e233e44e36"},{"assignedTimestamp":"2022-11-18T12:09:11Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"6ea4c1ef-c259-46df-bce2-943342cd3cb2"},{"assignedTimestamp":"2022-11-18T12:09:11Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"74d93933-6f22-436e-9441-66d205435abb"},{"assignedTimestamp":"2022-11-18T12:09:11Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"91f50f7b-2204-4803-acac-5cf5668b8b39"},{"assignedTimestamp":"2022-11-18T12:09:11Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"dc789ed8-0170-4b65-a415-eb77d5bb350a"},{"assignedTimestamp":"2022-11-18T12:09:11Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"ea2cf03b-ac60-46ae-9c1d-eeaeb63cec86"},{"assignedTimestamp":"2022-11-18T12:09:11Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"c5002c70-f725-4367-b409-f0eff4fee6c0"},{"assignedTimestamp":"2022-11-12T06:52:10Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"60bf28f9-2b70-4522-96f7-335f5e06c941"},{"assignedTimestamp":"2022-08-08T17:17:30Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2022-08-08T02:08:16Z","capabilityStatus":"Enabled","service":"Viva-Goals","servicePlanId":"b44c6eaf-5c9f-478c-8f16-8cea26353bfb"},{"assignedTimestamp":"2022-07-26T12:12:06Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2022-07-19T23:20:56Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2022-07-19T23:20:56Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2022-07-19T23:20:56Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2022-07-19T07:22:54Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"59231cdf-b40d-4534-a93e-14d0cd31d27e"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"2d589a15-b171-4e61-9b5f-31d15eeb2872"},{"assignedTimestamp":"2022-07-19T03:02:52Z","capabilityStatus":"Enabled","service":"Modern-Workplace-Core-ITaas","servicePlanId":"9a6eeb79-0b4b-4bf0-9808-39d99a2cd5a3"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2022-07-19T03:02:51Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"}],"city":"Atlanta","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":"2022-07-19T03:00:55Z","creationType":null,"department":"Compute - COGS Efficiency (MAP)","dirSyncEnabled":true,"displayName":"Mwesigwa Guma","employeeId":"6266203","facsimileTelephoneNumber":null,"givenName":"Mwesigwa","immutableId":"6266203","isCompromised":null,"jobTitle":"SOFTWARE - ENGINEER","lastDirSyncTime":"2024-04-16T18:16:47Z","legalAgeGroupClassification":null,"mail":"mwesigwaguma@microsoft.com","mailNickname":"mwesigwaguma","mobile":null,"onPremisesDistinguishedName":"CN=Mwesigwa - Guma,OU=MSE,OU=Users,OU=CoreIdentity,DC=redmond,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-2127521184-1604012920-1887927527-59310252","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"ATLANTA-200 - 17TH ST NW/Mobile","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":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"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":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"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":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"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":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange - Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=33379bd678a04a24af6e008a5066888e-Mwesigwa - Guma","X500:/o=microsoft/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=95f386363ec4433a9367d85eab90a0b3-Mwesigwa - Guma","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=ddc7f5a88c45487abe04e51bb4d6b1c0-Mwesigwa - Gu","smtp:mwesigwaguma@microsoft.onmicrosoft.com","smtp:mwesigwaguma@service.microsoft.com","SMTP:mwesigwaguma@microsoft.com"],"refreshTokensValidFromDateTime":"2023-08-25T15:25:07Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"mwesigwaguma@microsoft.com","state":null,"streetAddress":null,"surname":"Guma","telephoneNumber":"+1 - (470) 8268252","thumbnailPhoto@odata.mediaEditLink":"directoryObjects/7c25af64-9686-4f2b-8350-66e7f1cd6144/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"US","userIdentities":[],"userPrincipalName":"mwesigwaguma@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"423722","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Jitendra - Kochhar","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"JKOCHHAR","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"MOBILE","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"99998","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10211989","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"72626535","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10211989","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"6266203"}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '28100' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Fri, 03 May 2024 04:45:08 GMT - duration: - - '2435010' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - 8onmiQs4LqwWp5cRoKp5VYVA7o7B+XkLA75o6wIE58I= - ocp-aad-session-key: - - 18MU8gt2uwdZRIBPZK12GDjitM-JiU5Jo6NCzkJ78ou8T2WVREGeUP9AzdQQksXW8vKRpQnk8pU2EtJPTUMda12CpH4II4TjbMPYhaXX5JUjFmaFAyf4JocNcWCgx756.J8NsKLkxNyZa1uX543ygw4stlafo65vyquUsdUEI6e8 - pragma: - - no-cache - request-id: - - 720dc4b8-e2eb-43ae-b5e4-223bbe5e18ed - 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": "7c25af64-9686-4f2b-8350-66e7f1cd6144", - "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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh","name":"clitestrgvghrhbh2k2uh","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"systemData":{"createdBy":"mwesigwaguma@microsoft.com","createdByType":"User","createdAt":"2024-05-03T04:45:09.702Z","lastModifiedBy":"mwesigwaguma@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-03T04:45:09.702Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7c25af64-9686-4f2b-8350-66e7f1cd6144","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://clitestrgvghrhbh2k2uh.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1285' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:45:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.1158.0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 4BD31A548C704E48847547EFD3ABA918 Ref B: MNZ221060609053 Ref C: 2024-05-03T04:45:09Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh","name":"clitestrgvghrhbh2k2uh","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"systemData":{"createdBy":"mwesigwaguma@microsoft.com","createdByType":"User","createdAt":"2024-05-03T04:45:09.702Z","lastModifiedBy":"mwesigwaguma@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-03T04:45:09.702Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7c25af64-9686-4f2b-8350-66e7f1cd6144","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://clitestrgvghrhbh2k2uh.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1286' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:45:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.1158.0 - x-msedge-ref: - - 'Ref A: 700B32D3BF57407B90990699DFF5E78A Ref B: MNZ221060609053 Ref C: 2024-05-03T04:45:11Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh?api-version=2023-02-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh","name":"clitestrgvghrhbh2k2uh","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"systemData":{"createdBy":"mwesigwaguma@microsoft.com","createdByType":"User","createdAt":"2024-05-03T04:45:09.702Z","lastModifiedBy":"mwesigwaguma@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-05-03T04:45:09.702Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"7c25af64-9686-4f2b-8350-66e7f1cd6144","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://clitestrgvghrhbh2k2uh.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' - headers: - cache-control: - - no-cache - content-length: - - '1281' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:45:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-keyvault-service-version: - - 1.5.1158.0 - x-msedge-ref: - - 'Ref A: B4BB2AA6127440B2915B70F0B2FD5260 Ref B: MNZ221060609053 Ref C: 2024-05-03T04:45:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/create?api-version=7.4 - 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: - - Fri, 03 May 2024 04:46:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000;includeSubDomains - www-authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", - resource="https://vault.azure.net" - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=52.226.126.98;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.9.1430.6 - 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", "sans": {}, "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}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '519' - Content-Type: - - application/json - User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/create?api-version=7.4 - response: - body: - string: '{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktNXFiYnNycWxnYnVydTQ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvl9FDk1HBFFEZwpZIBoHLn4wAjQSeDgr2KXpMyIbKLsyBTVXRtNxi3YtjLAo/OzrKdq8V3FwpyCihQHZfyG9pm2LHWQowTikx01qVSiHGle1SmngUJnVXzHYGrrJ7ehYfbr06KVyFQRkcf/RXcR7cGYEGKq5vmJEUPG7e5Lu5uOjBDlyvjInYEm2lnunuV3IJD2n4Mat+c6ug73yNTATwyt52/4ZP/8+8xEhXRzSccZUm5VX9f1dpeFZYnGRLIY2Jp3vfCXWNTMJ2KDjn3jEO8VLEhu/T6hVVrjB4W8tkPkf23pTmOpUtCsbWWvqanoHoVEtd9B6q7Ypzp8i8zSCWQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAFFSjijPKH+jdG8CxJqnAMUr3GZlY4e00b02aC7arOpRFJYHiVk6GmKwYwyzcXe1Rap9SjuyeGKLzz3ChBtxu/jXo2JVWQhmTYVCtGIHr2YLJB4jTfhtnin0zfYz2wnIVe3AzVEfkWEs10qMZMI03t6glW6NHyhq53xkrBCDW2GwGiwSZawawVKaGJSgiMsy+9MGI6pWdabM660P9mzvQXRI+blxbi8Dv+ylUN05ic/s21yog8MM2p+fLoRldEItyHtX2yK2+eTmlL5eVY3DP+4djzG/mlRm+J4JShm81YDK0ZOFRKcVKKwFR3eAdNbvGvfw6hVmaL23CxJIbM+LYUg=","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":"f1d33536fe984600ab450056230fcc60"}' - headers: - cache-control: - - no-cache - content-length: - - '1318' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:08 GMT - expires: - - '-1' - location: - - https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.4&request_id=f1d33536fe984600ab450056230fcc60 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000;includeSubDomains - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=52.226.126.98;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.9.1430.6 - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.4 - response: - body: - string: '{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktNXFiYnNycWxnYnVydTQ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvl9FDk1HBFFEZwpZIBoHLn4wAjQSeDgr2KXpMyIbKLsyBTVXRtNxi3YtjLAo/OzrKdq8V3FwpyCihQHZfyG9pm2LHWQowTikx01qVSiHGle1SmngUJnVXzHYGrrJ7ehYfbr06KVyFQRkcf/RXcR7cGYEGKq5vmJEUPG7e5Lu5uOjBDlyvjInYEm2lnunuV3IJD2n4Mat+c6ug73yNTATwyt52/4ZP/8+8xEhXRzSccZUm5VX9f1dpeFZYnGRLIY2Jp3vfCXWNTMJ2KDjn3jEO8VLEhu/T6hVVrjB4W8tkPkf23pTmOpUtCsbWWvqanoHoVEtd9B6q7Ypzp8i8zSCWQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAFFSjijPKH+jdG8CxJqnAMUr3GZlY4e00b02aC7arOpRFJYHiVk6GmKwYwyzcXe1Rap9SjuyeGKLzz3ChBtxu/jXo2JVWQhmTYVCtGIHr2YLJB4jTfhtnin0zfYz2wnIVe3AzVEfkWEs10qMZMI03t6glW6NHyhq53xkrBCDW2GwGiwSZawawVKaGJSgiMsy+9MGI6pWdabM660P9mzvQXRI+blxbi8Dv+ylUN05ic/s21yog8MM2p+fLoRldEItyHtX2yK2+eTmlL5eVY3DP+4djzG/mlRm+J4JShm81YDK0ZOFRKcVKKwFR3eAdNbvGvfw6hVmaL23CxJIbM+LYUg=","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":"f1d33536fe984600ab450056230fcc60"}' - headers: - cache-control: - - no-cache - content-length: - - '1318' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:08 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=52.226.126.98;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.9.1430.6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.4 - response: - body: - string: '{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktNXFiYnNycWxnYnVydTQ0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvl9FDk1HBFFEZwpZIBoHLn4wAjQSeDgr2KXpMyIbKLsyBTVXRtNxi3YtjLAo/OzrKdq8V3FwpyCihQHZfyG9pm2LHWQowTikx01qVSiHGle1SmngUJnVXzHYGrrJ7ehYfbr06KVyFQRkcf/RXcR7cGYEGKq5vmJEUPG7e5Lu5uOjBDlyvjInYEm2lnunuV3IJD2n4Mat+c6ug73yNTATwyt52/4ZP/8+8xEhXRzSccZUm5VX9f1dpeFZYnGRLIY2Jp3vfCXWNTMJ2KDjn3jEO8VLEhu/T6hVVrjB4W8tkPkf23pTmOpUtCsbWWvqanoHoVEtd9B6q7Ypzp8i8zSCWQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAFFSjijPKH+jdG8CxJqnAMUr3GZlY4e00b02aC7arOpRFJYHiVk6GmKwYwyzcXe1Rap9SjuyeGKLzz3ChBtxu/jXo2JVWQhmTYVCtGIHr2YLJB4jTfhtnin0zfYz2wnIVe3AzVEfkWEs10qMZMI03t6glW6NHyhq53xkrBCDW2GwGiwSZawawVKaGJSgiMsy+9MGI6pWdabM660P9mzvQXRI+blxbi8Dv+ylUN05ic/s21yog8MM2p+fLoRldEItyHtX2yK2+eTmlL5eVY3DP+4djzG/mlRm+J4JShm81YDK0ZOFRKcVKKwFR3eAdNbvGvfw6hVmaL23CxJIbM+LYUg=","cancellation_requested":false,"status":"completed","target":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004","request_id":"f1d33536fe984600ab450056230fcc60"}' - headers: - cache-control: - - no-cache - content-length: - - '1239' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:13 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=52.226.126.98;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.9.1430.6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/?api-version=7.4 - response: - body: - string: '{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3","kid":"https://clitestrgvghrhbh2k2uh.vault.azure.net/keys/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3","sid":"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3","x5t":"5avRaFv-gjASFElQBvro5BGc5Yw","cer":"MIIDTDCCAjSgAwIBAgIQQlU0CpAxRZ6VwHyV2AzRXDANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDExhzZnJwLWNsaS01cWJic3JxbGdidXJ1NDQwHhcNMjQwNTAzMDQzNjEwWhcNMjUwNTAzMDQ0NjEwWjAjMSEwHwYDVQQDExhzZnJwLWNsaS01cWJic3JxbGdidXJ1NDQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC+X0UOTUcEUURnClkgGgcufjACNBJ4OCvYpekzIhsouzIFNVdG03GLdi2MsCj87Osp2rxXcXCnIKKFAdl/Ib2mbYsdZCjBOKTHTWpVKIcaV7VKaeBQmdVfMdgausnt6Fh9uvTopXIVBGRx/9FdxHtwZgQYqrm+YkRQ8bt7ku7m46MEOXK+MidgSbaWe6e5XcgkPafgxq35zq6DvfI1MBPDK3nb/hk//z7zESFdHNJxxlSblVf1/V2l4VlicZEshjYmne98JdY1MwnYoOOfeMQ7xUsSG79PqFVWuMHhby2Q+R/belOY6lS0KxtZa+pqegehUS130HqrtinOnyLzNIJZAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIBvjAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBRxnmf1uoVvGFjLnLMxM4DAHyUlgjAdBgNVHQ4EFgQUcZ5n9bqFbxhYy5yzMTOAwB8lJYIwDQYJKoZIhvcNAQELBQADggEBAJblsd23TXCgcgCZJU9T7PNW3Su/1aSF/SjZdicLMqLLqdY5P8oBUCpyo2986wUXu6eLwnIffDbmsVuBOA0QE/J9LoWWIWieBm16lt1niQueE9bwb1ajUMTnHcZlVPkuztcUCbzw7Ne7i7omKL0Ndqp/2hSl3LbGruwZAY4x0pow9IAhGMmZkbr8Q4g3ITV/UhOrHULUnhR0hIdPNwb0QHYnZHZ0DAljXrnFKMMLvmSH8wvUNscUrAnk0r9OPH38doxp8FDEDZEr6FykCqJmO15Pjqp6H2YomR/e5Tb5rwe6hE8YwfmkmGxxOsTkkuix7mib14ivPcdJiMMnaw6JOD4=","attributes":{"enabled":true,"nbf":1714710970,"exp":1746247570,"created":1714711570,"updated":1714711570,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90},"policy":{"id":"https://clitestrgvghrhbh2k2uh.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","sans":{},"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":1714711568,"updated":1714711568}},"pending":{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending"}}' - headers: - cache-control: - - no-cache - content-length: - - '2473' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:13 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=52.226.126.98;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.9.1430.6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-keyvault-certificates/4.7.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/?api-version=7.4 - response: - body: - string: '{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3","kid":"https://clitestrgvghrhbh2k2uh.vault.azure.net/keys/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3","sid":"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3","x5t":"5avRaFv-gjASFElQBvro5BGc5Yw","cer":"MIIDTDCCAjSgAwIBAgIQQlU0CpAxRZ6VwHyV2AzRXDANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDExhzZnJwLWNsaS01cWJic3JxbGdidXJ1NDQwHhcNMjQwNTAzMDQzNjEwWhcNMjUwNTAzMDQ0NjEwWjAjMSEwHwYDVQQDExhzZnJwLWNsaS01cWJic3JxbGdidXJ1NDQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC+X0UOTUcEUURnClkgGgcufjACNBJ4OCvYpekzIhsouzIFNVdG03GLdi2MsCj87Osp2rxXcXCnIKKFAdl/Ib2mbYsdZCjBOKTHTWpVKIcaV7VKaeBQmdVfMdgausnt6Fh9uvTopXIVBGRx/9FdxHtwZgQYqrm+YkRQ8bt7ku7m46MEOXK+MidgSbaWe6e5XcgkPafgxq35zq6DvfI1MBPDK3nb/hk//z7zESFdHNJxxlSblVf1/V2l4VlicZEshjYmne98JdY1MwnYoOOfeMQ7xUsSG79PqFVWuMHhby2Q+R/belOY6lS0KxtZa+pqegehUS130HqrtinOnyLzNIJZAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIBvjAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBRxnmf1uoVvGFjLnLMxM4DAHyUlgjAdBgNVHQ4EFgQUcZ5n9bqFbxhYy5yzMTOAwB8lJYIwDQYJKoZIhvcNAQELBQADggEBAJblsd23TXCgcgCZJU9T7PNW3Su/1aSF/SjZdicLMqLLqdY5P8oBUCpyo2986wUXu6eLwnIffDbmsVuBOA0QE/J9LoWWIWieBm16lt1niQueE9bwb1ajUMTnHcZlVPkuztcUCbzw7Ne7i7omKL0Ndqp/2hSl3LbGruwZAY4x0pow9IAhGMmZkbr8Q4g3ITV/UhOrHULUnhR0hIdPNwb0QHYnZHZ0DAljXrnFKMMLvmSH8wvUNscUrAnk0r9OPH38doxp8FDEDZEr6FykCqJmO15Pjqp6H2YomR/e5Tb5rwe6hE8YwfmkmGxxOsTkkuix7mib14ivPcdJiMMnaw6JOD4=","attributes":{"enabled":true,"nbf":1714710970,"exp":1746247570,"created":1714711570,"updated":1714711570,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90},"policy":{"id":"https://clitestrgvghrhbh2k2uh.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","sans":{},"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":1714711568,"updated":1714711568}},"pending":{"id":"https://clitestrgvghrhbh2k2uh.vault.azure.net/certificates/sfrp-cli-000004/pending"}}' - headers: - cache-control: - - no-cache - content-length: - - '2473' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:13 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=52.226.126.98;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - southcentralus - x-ms-keyvault-service-version: - - 1.9.1430.6 - 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": "E5ABD1685BFE82301214495006FAE8E4119CE58C"}, - "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh"}, - "certificateUrlvalue": {"value": "https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3"}, - "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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202405030046","name":"AzurePSDeployment-202405030046","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":"E5ABD1685BFE82301214495006FAE8E4119CE58C"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh"},"certificateUrlValue":{"type":"String","value":"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3"},"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":"f8d36afa-f6f1-44fe-a25b-71353dae1c42","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/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/o2573pyqgc42g3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"o2573pyqgc42g3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2","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/o2573pyqgc42g3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"o2573pyqgc42g3","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/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2","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/sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/o2573pyqgc42g3"},{"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: - - Fri, 03 May 2024 04:46:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 2E9E098788D44E56AFE18AD90EFAB2A8 Ref B: MNZ221060609053 Ref C: 2024-05-03T04:46:14Z' - 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": "E5ABD1685BFE82301214495006FAE8E4119CE58C"}, - "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh"}, - "certificateUrlvalue": {"value": "https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3"}, - "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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202405030046","name":"AzurePSDeployment-202405030046","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":"E5ABD1685BFE82301214495006FAE8E4119CE58C"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh"},"certificateUrlValue":{"type":"String","value":"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3"},"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":"2024-05-03T04:46:22.529885Z","duration":"PT0.0007032S","correlationId":"5c6e5b10-460a-4873-ab89-0888cbebb7ca","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/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/o2573pyqgc42g3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"o2573pyqgc42g3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2","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/o2573pyqgc42g3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"o2573pyqgc42g3","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/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2","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-202405030046/operationStatuses/08584868953049692169?api-version=2022-09-01 - cache-control: - - no-cache - content-length: - - '6205' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 2B900CA7E5F74688A7757EEB3DA9DFA0 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:46:18Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 928D5484C87B4A72B73ED3C6748653FB Ref B: MNZ221060619017 Ref C: 2024-05-03T04:46:22Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:46:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5D04B1FAFA84448D813FB5791E008DD8 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:46:53Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:47:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E3CE6F6BBA2F4BA7B62984E7D55FC181 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:47:23Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:47:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D920C7203EFA4F04814F0AF1C2046D8A Ref B: MNZ221060619017 Ref C: 2024-05-03T04:47:53Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:48:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: FBDFDE61E70940E7BB436C9D2AD4F805 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:48:23Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:48:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: ECD0AF8B43114FBB8169D19BB60755F8 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:48:54Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:49:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2BB21FA1974C4730A12AB34190130477 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:49:24Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:49:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5A792C03AC6E42ACA5BDE75FEE6C1327 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:49:54Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:50:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D3944FF6BC044E14940ED97411B5C769 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:50:24Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:50:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 97632AD9A94E4991804400614E16C7EC Ref B: MNZ221060619017 Ref C: 2024-05-03T04:50:54Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:51:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1FCDD28FC705478CB6BBFF685D66C5BE Ref B: MNZ221060619017 Ref C: 2024-05-03T04:51:24Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:51:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6EE17B8218B74A3E8DB3BAC20EDD3F6B Ref B: MNZ221060619017 Ref C: 2024-05-03T04:51:55Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:52:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 73908576C5EE4C79BEF1BC67177576EA Ref B: MNZ221060619017 Ref C: 2024-05-03T04:52:25Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:52:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CCE7FC6FECC44B1EB1906DC708F53FA8 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:52:55Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584868953049692169?api-version=2022-09-01 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:53:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 688CD45512D54431AEC26F11E87A9267 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:53:26Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-09-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202405030046","name":"AzurePSDeployment-202405030046","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":"E5ABD1685BFE82301214495006FAE8E4119CE58C"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh"},"certificateUrlValue":{"type":"String","value":"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3"},"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":"2024-05-03T04:53:18.7823148Z","duration":"PT6M56.253133S","correlationId":"5c6e5b10-460a-4873-ab89-0888cbebb7ca","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/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/o2573pyqgc42g3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"o2573pyqgc42g3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2","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/o2573pyqgc42g3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"o2573pyqgc42g3","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/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogso2573pyqgc42g2","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":"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7","clusterCodeVersion":"10.1.1951.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080","clusterEndpoint":"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7","certificate":{"thumbprint":"E5ABD1685BFE82301214495006FAE8E4119CE58C","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":"sflogso2573pyqgc42g2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogso2573pyqgc42g2.blob.core.windows.net/","queueEndpoint":"https://sflogso2573pyqgc42g2.queue.core.windows.net/","tableEndpoint":"https://sflogso2573pyqgc42g2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"10.1.1951.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/o2573pyqgc42g3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '8906' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 04:53:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7D6BDB692AA54A2187F86D3D0AE54B72 Ref B: MNZ221060619017 Ref C: 2024-05-03T04:53:26Z' - 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-subject-name --vm-password --cluster-size - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2942' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:53:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E8C26857BE234757A58D4C98B4263973 Ref B: MNZ221060609049 Ref C: 2024-05-03T04:53:26Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2942' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:53:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 68F88CC926FA48C286B069B60B5890AC Ref B: MNZ221060608011 Ref C: 2024-05-03T04:53:27Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2942' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:53:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1DB8AD91D6C14C0AAEE94FA3B77F5A53 Ref B: MNZ221060619021 Ref C: 2024-05-03T04:53:27Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2942' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:54:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 5D9EF70EBD734EF984C361A99454D79B Ref B: MNZ221060618021 Ref C: 2024-05-03T04:54:28Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2948' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:55:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 14D79A3227064EF3BAFC04A17FFBEDEC Ref B: MNZ221060619031 Ref C: 2024-05-03T04:55:28Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2948' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:56:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 1537D35CAA9C469FADFB8772DFA3B44E Ref B: MNZ221060619037 Ref C: 2024-05-03T04:56:28Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2948' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:57:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 80E0771F731D485F9437CD48EC6D476B Ref B: MNZ221060618031 Ref C: 2024-05-03T04:57:29Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2948' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:58:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7D9AAF2721D3417E96D666322B39E9EC Ref B: MNZ221060609009 Ref C: 2024-05-03T04:58:29Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2938' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:59:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 12F4355954704446B1888DB56B937A5C Ref B: MNZ221060608033 Ref C: 2024-05-03T04:59:30Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496892\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:46:48.6795634+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2938' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:59:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 928C07BCA63348C0A997BC7A04224AB3 Ref B: MNZ221060609051 Ref C: 2024-05-03T04:59:30Z' - 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, "isStateless": false}, - {"name": "nt2", "clientConnectionEndpointPort": 19000, "httpGatewayEndpointPort": - 19080, "durabilityLevel": "Bronze", "applicationPorts": {"startPort": 20000, - "endPort": 30000}, "ephemeralPorts": {"startPort": 49152, "endPort": 65534}, - "isPrimary": false, "vmInstanceCount": 5}], "upgradeMode": "Automatic"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '640' - Content-Type: - - application/json - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496893\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:59:31.7354866+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n }\r\n - \ ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogso2573pyqgc42g2.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\": \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": - \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n - \ }\r\n ],\r\n \"upgradeWave\": \"Wave0\"\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - cache-control: - - no-cache - content-length: - - '2957' - content-type: - - application/json - date: - - Fri, 03 May 2024 04:59:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operationResults/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718604832&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=WrQtAwNWcU2H5ja9-r0imVzLOeAbXwWuZHxXr_yxNa77mLPNJ5mqUELeMQpuAF646P4StxtCGvwyZVGa4nvAvKpBY9UwwfisXn9F3woRevcJBWXCENrQW7xcjYXYkaZYcDqL3sV7ei-jqhHnBvwPba1tuBSib8IN7kHy5423h12T77PKBEJv-bMXfvkdUEM37FfrUBdj7TmgXV3Z8_kxtugO3OAjGixo9CpFOFn2Fr5z1nPtrD0zwJsuv98iR9aQipNP2HKucyjCSh_Jhgp-PMCvPewpQYbkagiv0DUdTgkrWIAdDFXSaRvwgoRwDo7_eUFQiL6NFTB0Mkqcr-Of1A&h=0nauccCbBj34wP1d5bc0IP8AafdqOrycONdBdR7ZuOw - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 4A636ADA4359484E8CB6C9F295AD51C2 Ref B: MNZ221060609051 Ref C: 2024-05-03T04:59:30Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\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: - - Fri, 03 May 2024 04:59:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 312062566C104980BD8CBF3CB3A8C230 Ref B: MNZ221060609051 Ref C: 2024-05-03T04:59:31Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\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: - - Fri, 03 May 2024 05:00:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 488612C0ED6C454786E0AAC19135DC22 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:00:02Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\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: - - Fri, 03 May 2024 05:00:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6CED4B35031D4211A4F9B8649FE6678E Ref B: MNZ221060609051 Ref C: 2024-05-03T05:00:33Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\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: - - Fri, 03 May 2024 05:01:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BC6B536BCEF54A04922E7E7E74BA4D5B Ref B: MNZ221060609051 Ref C: 2024-05-03T05:01:03Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\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: - - Fri, 03 May 2024 05:01:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 90981706957F4065947FFB9709C6A192 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:01:34Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3479' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:02:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B572532E71EE4C33A2C708CD898C35F2 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:02:04Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3479' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:02:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AE699155A5584B1DB46A35E065B0C03A Ref B: MNZ221060609051 Ref C: 2024-05-03T05:02:34Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3747' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:03:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B55199E7D382458D8F49553852882EA1 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:03:05Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3747' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:03:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C04045D73ED541BFA1F582BFCE3B0970 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:03:35Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3747' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:04:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2715AADF8884468DA4FCE08104140480 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:04:05Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3747' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:04:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: DB590593E1B24C919F356CEEEBCB052D Ref B: MNZ221060609051 Ref C: 2024-05-03T05:04:36Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3749' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:05:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E17116172DF44DB0B285A29502ED66B6 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:05:06Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3749' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:05:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 456D38DB78C24ABAA5678E3D8D353E25 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:05:37Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3751' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:06:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 58F1E8B686E14D90BC3402AEA770F4CD Ref B: MNZ221060609051 Ref C: 2024-05-03T05:06:07Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3751' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:06:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BE7B1499170B420DADED304E969EC668 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:06:38Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3751' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:07:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D5E46C09355D49469C7CC10EDD1965F9 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:07:08Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3751' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:07:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E2EE07B7BA2243828AA1AA6E0D28CD0D Ref B: MNZ221060609051 Ref C: 2024-05-03T05:07:38Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3753' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:08:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 50D913773D114ED697296FAA0BE1F7DE Ref B: MNZ221060609051 Ref C: 2024-05-03T05:08:09Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3753' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:08:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 395206E9C65F403B870D11416E5F49A1 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:08:39Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3727' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:09:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0A6DFD0B8A2844DF8F6E2E7D6898C018 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:09:09Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3727' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:09:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7733BE11BCAF468E9E4377EDEEC08328 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:09:40Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3728' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:10:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4799935FAE884BBCA21D2EC64996E23F Ref B: MNZ221060609051 Ref C: 2024-05-03T05:10:10Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3728' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:10:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 89824AC7A65C4C43A9F5568B81A87CB8 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:10:40Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:00:45.4822563Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3730' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:11:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B9D8A22ADFD044B99D061351D8592092 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:11:11Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6?api-version=2021-06-01&Experiment=local&t=638503091718448625&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=vl3Q1w2-qn7RRdVY2_6lBolWIQnkc7iKOyGmev0suxT3IGzKzCdku08nBr4DwYSO2xf3tWSPCGSB0snwctYYQAD3TmtfivAZz3E3AQtXd1SkIofa-c33GMxtpNvrOYVRM1JvkBmUv6lzeHLN8GGg5umfrkLI_uKA6RZXyMkAcd7TgZMmALc6w9eafebKH-YTnuk94UTWhWCtWuSIZhZkryvy0r8Q6LwnTRXk9JPPyXcYNX3OjqhDlgyisx600UDvqX8Vd4fAzZLKodwFIKDclHrEguyFcw2QOHQYKkIMJ4YKTgr-AsPm1b6jkmf50lHtf6UDXFSOnWif4q0BcB2q5A&h=duH9af_rUYZ4bDwVNvY3MHDmFmuw42KGS4ZX_vkEylg - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n - \ \"name\": \"4b8c0002-5143-4f7a-9140-aa9aa6d1a0a6\",\r\n \"status\": \"Succeeded\",\r\n - \ \"startTime\": \"2024-05-03T04:59:31.7788603Z\",\r\n \"endTime\": \"2024-05-03T05:11:41.6177907Z\",\r\n - \ \"percentComplete\": 100.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '374' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:11:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 49B9B18B84994A3580E155B0703705A9 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:11:41Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496893\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:59:31.7354866+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n },\r\n - \ {\r\n \"name\": \"nt2\",\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 \"vmInstanceCount\": 5,\r\n \"isStateless\": - false\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n - \ \"storageAccountName\": \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogso2573pyqgc42g2.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\": - \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"upgradeWave\": - \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3402' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:11:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6CB2B6062FC94D16BD1D0E4D8F1C0643 Ref B: MNZ221060609051 Ref C: 2024-05-03T05:11:41Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-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","test":"test_add_secondary_node_type_add_remove_node","date":"2024-05-03T04:44:59Z","module":"servicefabric"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '397' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 683E0C879D174C8095BB45C2157F8564 Ref B: MNZ221060608049 Ref C: 2024-05-03T05:11:42Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-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/\\\"9fe27881-524f-463f-a9c3-786620960d2f\\\"\",\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\": \"17a62508-ee99-4934-b55e-8636539512bb\",\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/\\\"9fe27881-524f-463f-a9c3-786620960d2f\\\"\",\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-h4hdypz7e27pgVNet\"\r\n - \ },\r\n \"ipConfigurations\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVGHRHBH2K2UHKOFDE5UQMIMKX7XB7HFSYNNBDPLJYNKJ7YBTFFOL4UF6ATNMLBIJK/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.RGVGHRHBH2K2UHKOFDE5UQMIMKX7XB7HFSYNNBDPLJYNKJ7YBTFFOL4UF6ATNMLBIJK/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.RGVGHRHBH2K2UHKOFDE5UQMIMKX7XB7HFSYNNBDPLJYNKJ7YBTFFOL4UF6ATNMLBIJK/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/NT1VM/VIRTUALMACHINES/2/NETWORKINTERFACES/NIC-0/ipConfigurations/NIC-0\"\r\n - \ }\r\n ],\r\n \"delegations\": [],\r\n - \ \"privateEndpointNetworkPolicies\": \"Disabled\",\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: - - '2786' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f3b76a86-0ffb-41e6-8a06-9c587ce824b1 - x-msedge-ref: - - 'Ref A: 9D038B18A16E40F4A0469E5B0D1AB3E3 Ref B: MNZ221060619021 Ref C: 2024-05-03T05:11:45Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-01-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/\\\"9fe27881-524f-463f-a9c3-786620960d2f\\\"\",\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-h4hdypz7e27pgVNet\"\r\n - \ },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGVGHRHBH2K2UHKOFDE5UQMIMKX7XB7HFSYNNBDPLJYNKJ7YBTFFOL4UF6ATNMLBIJK/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.RGVGHRHBH2K2UHKOFDE5UQMIMKX7XB7HFSYNNBDPLJYNKJ7YBTFFOL4UF6ATNMLBIJK/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.RGVGHRHBH2K2UHKOFDE5UQMIMKX7XB7HFSYNNBDPLJYNKJ7YBTFFOL4UF6ATNMLBIJK/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/NT1VM/VIRTUALMACHINES/2/NETWORKINTERFACES/NIC-0/ipConfigurations/NIC-0\"\r\n - \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\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: - - '1813' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4cfe4558-7e2f-41d0-8e7f-fa2d0ba254d4 - x-msedge-ref: - - 'Ref A: EFA8F48CE6D342C5878C0DD98ABF6C91 Ref B: MNZ221060619047 Ref C: 2024-05-03T05:11:46Z' - status: - code: 200 - message: OK -- request: - body: '{"name": "subnet_1", "properties": {"addressPrefix": "10.0.1.0/24"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '68' - Content-Type: - - application/json - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-01-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/\\\"f08adf00-28f7-4767-85a9-a8d5c668ecfe\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a9b9c081-70c4-4607-a5b5-014de6b89804?api-version=2022-01-01&t=638503099090785762&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=u2AG3cQ4YRviysXvlSdC5wLkQrx1zM1tIXK2LM-SjVEmScxowjSUKSwTZLL1oNqytqRi-eAwJ0anyVoO8xI0nlAWNqNBllfIcfKmUYNLBaPfdlJ7kOMYeaHPGa2x7S2ARrVcQbu1Tv5KGJL-hykJXe6tZlYifG4Z2qStIy8Zk_2bwLlGh_Qyo6I-cE_xpOik6wzAI431-O7Az0uoGBBYiGxjQW_JdvySwbfTnZKG6x-R_R7sg7SjKvd_8MBVOVBWkIB6eYfUMaaZ6lnOn1wVUayHPL1TS6StiUa_neG3EM7V4GcQ8tmDvBJThpcpNxzCHs6f72xiF_ttettNUZsYSg&h=_xznrNURdFsN-lmfLX6YOp7XYPYcg1rxGPUC5S-72lY - cache-control: - - no-cache - content-length: - - '528' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 06026eaa-d7a5-4f3a-8392-dc091ba1aaf2 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 50794C21E3974F2CA10511737656D5A3 Ref B: MNZ221060610047 Ref C: 2024-05-03T05:11:47Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a9b9c081-70c4-4607-a5b5-014de6b89804?api-version=2022-01-01&t=638503099090785762&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=u2AG3cQ4YRviysXvlSdC5wLkQrx1zM1tIXK2LM-SjVEmScxowjSUKSwTZLL1oNqytqRi-eAwJ0anyVoO8xI0nlAWNqNBllfIcfKmUYNLBaPfdlJ7kOMYeaHPGa2x7S2ARrVcQbu1Tv5KGJL-hykJXe6tZlYifG4Z2qStIy8Zk_2bwLlGh_Qyo6I-cE_xpOik6wzAI431-O7Az0uoGBBYiGxjQW_JdvySwbfTnZKG6x-R_R7sg7SjKvd_8MBVOVBWkIB6eYfUMaaZ6lnOn1wVUayHPL1TS6StiUa_neG3EM7V4GcQ8tmDvBJThpcpNxzCHs6f72xiF_ttettNUZsYSg&h=_xznrNURdFsN-lmfLX6YOp7XYPYcg1rxGPUC5S-72lY - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 29b04182-8942-41a0-95c1-5d197fed56ec - x-msedge-ref: - - 'Ref A: 0679BA343A574CD2B3B76AA4111DBE98 Ref B: MNZ221060610047 Ref C: 2024-05-03T05:11:49Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-01-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/\\\"cd376f84-bc4f-4733-b1ad-55fcc2eaea95\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '529' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:50 GMT - etag: - - W/"cd376f84-bc4f-4733-b1ad-55fcc2eaea95" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 37595587-a126-43b8-a0ff-300f73f3f941 - x-msedge-ref: - - 'Ref A: 773F134A7D8747E5B99EDAC11A5E64E0 Ref B: MNZ221060610047 Ref C: 2024-05-03T05:11:50Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "southcentralus", "properties": {"dnsSettings": {"domainNameLabel": - "sfrp-cli-000004-nt21"}, "publicIPAllocationMethod": "Dynamic"}}' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-05-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/\\\"16d2b688-4339-4551-bcc3-293174e8dc85\\\"\",\r\n \"location\": - \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"5d8cf004-9436-4196-b55c-a09fa19ac1cf\",\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/9d80542b-2cd2-4422-a8dd-b9e08912afa4?api-version=2022-05-01&t=638503099130631242&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=YklzobwOpCCL1RSNaA3VWcVf0kD3L_q5t_sguf90PSTe6IgBlwdafBW0VU2o3keYtnTJT162s_getbNP3bPufwHAdWun5KQGRIqvPwwyYOg6dUIA6RTJBMJUZQR__AjKVBvGeHKMDwSSdJFxOYgdxuoJZreooN-rRihVXhI3H187zgjt6l5MXLr2cJegK2e7UijHoxZmKOTzO1xH07t6cSXH_dgKR1cpaWKOTzRvWOEHSWckb5UiLsYcMFNUBFJRRsYcBUikSDE2n2XDaMY9650G2bucjmZ8Gw57HiM7RR_IJNHzdwKmq1sW6fxDZ-QhLUv-CwSMfW5cb1c-sQxMog&h=yv8RoxYhvtby4GTnSbZtkkx8R3THR34cktrfV3001MM - cache-control: - - no-cache - content-length: - - '824' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3f747f10-2dd1-4a7e-8243-0373cec489ce - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 1957BBD5588943A08D3D66E2BBABDEB5 Ref B: MNZ221060618051 Ref C: 2024-05-03T05:11:51Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d80542b-2cd2-4422-a8dd-b9e08912afa4?api-version=2022-05-01&t=638503099130631242&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=YklzobwOpCCL1RSNaA3VWcVf0kD3L_q5t_sguf90PSTe6IgBlwdafBW0VU2o3keYtnTJT162s_getbNP3bPufwHAdWun5KQGRIqvPwwyYOg6dUIA6RTJBMJUZQR__AjKVBvGeHKMDwSSdJFxOYgdxuoJZreooN-rRihVXhI3H187zgjt6l5MXLr2cJegK2e7UijHoxZmKOTzO1xH07t6cSXH_dgKR1cpaWKOTzRvWOEHSWckb5UiLsYcMFNUBFJRRsYcBUikSDE2n2XDaMY9650G2bucjmZ8Gw57HiM7RR_IJNHzdwKmq1sW6fxDZ-QhLUv-CwSMfW5cb1c-sQxMog&h=yv8RoxYhvtby4GTnSbZtkkx8R3THR34cktrfV3001MM - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7f227e64-3b93-44c0-a424-a7a811b55564 - x-msedge-ref: - - 'Ref A: 1AE0DE20CC8E40158D2615291549A7E9 Ref B: MNZ221060618051 Ref C: 2024-05-03T05:11:53Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d80542b-2cd2-4422-a8dd-b9e08912afa4?api-version=2022-05-01&t=638503099130631242&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=YklzobwOpCCL1RSNaA3VWcVf0kD3L_q5t_sguf90PSTe6IgBlwdafBW0VU2o3keYtnTJT162s_getbNP3bPufwHAdWun5KQGRIqvPwwyYOg6dUIA6RTJBMJUZQR__AjKVBvGeHKMDwSSdJFxOYgdxuoJZreooN-rRihVXhI3H187zgjt6l5MXLr2cJegK2e7UijHoxZmKOTzO1xH07t6cSXH_dgKR1cpaWKOTzRvWOEHSWckb5UiLsYcMFNUBFJRRsYcBUikSDE2n2XDaMY9650G2bucjmZ8Gw57HiM7RR_IJNHzdwKmq1sW6fxDZ-QhLUv-CwSMfW5cb1c-sQxMog&h=yv8RoxYhvtby4GTnSbZtkkx8R3THR34cktrfV3001MM - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 6db42d99-c506-4001-b2c2-3215da328a24 - x-msedge-ref: - - 'Ref A: 4384E47EE42441BEB4D7B8FAF5CD8742 Ref B: MNZ221060618051 Ref C: 2024-05-03T05:11:56Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2022-05-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/\\\"9e31e632-973e-47fd-8f9c-6400d434132a\\\"\",\r\n \"location\": - \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"5d8cf004-9436-4196-b55c-a09fa19ac1cf\",\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: - - Fri, 03 May 2024 05:11:58 GMT - etag: - - W/"9e31e632-973e-47fd-8f9c-6400d434132a" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 948fcdfe-900e-4203-b883-a135d1e4595b - x-msedge-ref: - - 'Ref A: CF80E8FA005147EF918BFD031817401A Ref B: MNZ221060618051 Ref C: 2024-05-03T05:11:57Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-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","test":"test_add_secondary_node_type_add_remove_node","date":"2024-05-03T04:44:59Z","module":"servicefabric"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '397' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:11:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3A4B1C803EA04DA8920283AF90F34541 Ref B: MNZ221060608031 Ref C: 2024-05-03T05:11:59Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "southcentralus", "properties": {"backendAddressPools": [{"name": - "LoadBalancerBEAddressPool"}], "frontendIPConfigurations": [{"name": "LoadBalancerIPConfig", - "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21", - "location": "southcentralus"}}}], "inboundNatPools": [{"name": "LoadBalancerBEAddressNatPool", - "properties": {"backendPort": 3389, "frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "frontendPortRangeEnd": 4500, "frontendPortRangeStart": 3389, "protocol": "Tcp"}}], - "loadBalancingRules": [{"name": "LBRule", "properties": {"backendAddressPool": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool"}, - "backendPort": 19000, "enableFloatingIP": false, "frontendIPConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "frontendPort": 19000, "idleTimeoutInMinutes": 5, "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/probes/FabricGatewayProbe"}, - "protocol": "Tcp"}}, {"name": "LBHttpRule", "properties": {"backendAddressPool": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool"}, - "backendPort": 19080, "enableFloatingIP": false, "frontendIPConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "frontendPort": 19080, "idleTimeoutInMinutes": 5, "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/probes/FabricHttpGatewayProbe"}, - "protocol": "Tcp"}}], "probes": [{"name": "FabricGatewayProbe", "properties": - {"intervalInSeconds": 5, "numberOfProbes": 2, "port": 19000, "protocol": "Tcp"}}, - {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds": 5, "numberOfProbes": - 2, "port": 19080, "protocol": "Tcp"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '2742' - Content-Type: - - application/json - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1?api-version=2022-05-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-5qbbsrqlg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"896e86d2-1b70-4e84-b909-ed150b8695c5\",\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-5qbbsrqlg1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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 \"probeThreshold\": 1,\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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-5qbbsrqlg1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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 \"probeThreshold\": 1,\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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-5qbbsrqlg1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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/675e0009-5d1e-49d9-a914-773366081d53?api-version=2022-05-01&t=638503099213256735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ptI7uaVwcd5YWhkdmGyfOTqyZjNaPVHKWGFiEzkZGS9pGkxjxDWhYAvNLrqSO_pp22Y5am4tdg7tk7VkTiktrDfYoz3pBNCZEBBpfay5UaEZJkbCex3sne566HFuNCZjZnN7ii7FVIuGsGkqw__hNMBGiXrzWUL0HCTDDu4w5O58QBno8BrJjy6ccIriiJZoV8y2IdouRHtwjEqxWQEd2IOJKoaB5mYqFOnAJtpJaLX4SY3iK0eeunrZBKZHjsbO-mqlh8O0UCvNXdqhnJc08lpCpc4dZxAE2CxwCxEW16TfzBNMxiU6oqzIpNW-Gyy9cqANzf_zrEdQLEwSU1rgrw&h=twkScOJnjZ7f82tN8ggcvZNgLUvC71YA1TGP__PQ-gE - cache-control: - - no-cache - content-length: - - '9949' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 650520eb-e10a-40c3-bbe9-3f9b777938ae - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 17D9F6F4D0B749DD98D49ECD7B6B5A5F Ref B: MNZ221060608027 Ref C: 2024-05-03T05:11:59Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/675e0009-5d1e-49d9-a914-773366081d53?api-version=2022-05-01&t=638503099213256735&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=ptI7uaVwcd5YWhkdmGyfOTqyZjNaPVHKWGFiEzkZGS9pGkxjxDWhYAvNLrqSO_pp22Y5am4tdg7tk7VkTiktrDfYoz3pBNCZEBBpfay5UaEZJkbCex3sne566HFuNCZjZnN7ii7FVIuGsGkqw__hNMBGiXrzWUL0HCTDDu4w5O58QBno8BrJjy6ccIriiJZoV8y2IdouRHtwjEqxWQEd2IOJKoaB5mYqFOnAJtpJaLX4SY3iK0eeunrZBKZHjsbO-mqlh8O0UCvNXdqhnJc08lpCpc4dZxAE2CxwCxEW16TfzBNMxiU6oqzIpNW-Gyy9cqANzf_zrEdQLEwSU1rgrw&h=twkScOJnjZ7f82tN8ggcvZNgLUvC71YA1TGP__PQ-gE - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3de3d02f-88e7-4d7d-a776-cc8600a07964 - x-msedge-ref: - - 'Ref A: 1F5A245ADB714784A05802138286715E Ref B: MNZ221060608027 Ref C: 2024-05-03T05:12:01Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1?api-version=2022-05-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-5qbbsrqlg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"896e86d2-1b70-4e84-b909-ed150b8695c5\",\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-5qbbsrqlg1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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 \"probeThreshold\": 1,\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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-5qbbsrqlg1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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 \"probeThreshold\": 1,\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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-5qbbsrqlg1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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: - - '9949' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:02 GMT - etag: - - W/"8c84e82e-3612-4c75-bc49-2cfd92fda1d1" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 091f2503-42c4-42dd-98a1-fa858d878558 - x-msedge-ref: - - 'Ref A: 956730C9CD1A43ABBBF3DCE5FA042F76 Ref B: MNZ221060608027 Ref C: 2024-05-03T05:12:02Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1?api-version=2022-05-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-5qbbsrqlg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"896e86d2-1b70-4e84-b909-ed150b8695c5\",\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-5qbbsrqlg1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/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-5qbbsrqlg1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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 \"probeThreshold\": 1,\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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-5qbbsrqlg1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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 \"probeThreshold\": 1,\r\n - \ \"loadBalancingRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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-5qbbsrqlg1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"8c84e82e-3612-4c75-bc49-2cfd92fda1d1\\\"\",\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-5qbbsrqlg1/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: - - '9949' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:03 GMT - etag: - - W/"8c84e82e-3612-4c75-bc49-2cfd92fda1d1" - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - d5c91c11-be8e-403c-9a08-1a8636e8800d - x-msedge-ref: - - 'Ref A: E2ED9D72D5B64EF2B724DCF78C8F0F2C Ref B: MNZ221060608039 Ref C: 2024-05-03T05:12:03Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2023-09-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 \"orchestrationMode\": - \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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,\"disableTcpStateTracking\":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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": - true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n - \ \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": - \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n - \ \"timeCreated\": \"2024-05-03T04:53:58.7740734+00:00\"\r\n },\r\n - \ \"provisioningState\": \"Updating\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"54b028e7-1636-4ffb-9878-f2f4752fae37\",\r\n \"platformFaultDomainCount\": - 5,\r\n \"timeCreated\": \"2024-05-03T04:46:50.777753+00:00\"\r\n }\r\n - \ }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '6613' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079 - x-msedge-ref: - - 'Ref A: 059278918F6B46D9A3AF62FDC6FFB867 Ref B: MNZ221060608023 Ref C: 2024-05-03T05:12:04Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu41?api-version=2023-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/078aff19-3c62-413d-a4f6-a54bc957910a?monitor=true&api-version=2023-01-01&t=638503099273588298&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=CgK5N9IDe9pwIw_JB-r0wCHW3JyLwQSIVCCJP8yGoHq4-nYexSiAArOEtXPjO0-Ncu0-rVYFJRwa0q1IQQD2exoJK1bBXb8BWVcRt7w2hWNIniLtsTz-pq3E-LNys29EvpegGVXBlPJbRcg0oyfqhjSHkEPBExnZT3Wlg4m72walBqwpQ1WAXlB4oiuhSckXVzsyEKU7pYLTEMb2hDS9afMB4Uv8KvG1Krky3GtQvh4hXLm74kyuAhbv7KRZJdXBRlO-1R2Fq8RKunGG7gWGDnU9IVhw3AX4KqFR1ZU-LopIUkaxdu19lgVI3Sf585nBnVoRMbV_uuSGGNzhkueJ0w&h=x3H51zytu89EbVkgp4HjztR2mLgYoU82rGnLbRznKLA - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: D409E1CFB068408A824BEB96237D12A0 Ref B: MNZ221060610019 Ref C: 2024-05-03T05:12:04Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/078aff19-3c62-413d-a4f6-a54bc957910a?monitor=true&api-version=2023-01-01&t=638503099273588298&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=CgK5N9IDe9pwIw_JB-r0wCHW3JyLwQSIVCCJP8yGoHq4-nYexSiAArOEtXPjO0-Ncu0-rVYFJRwa0q1IQQD2exoJK1bBXb8BWVcRt7w2hWNIniLtsTz-pq3E-LNys29EvpegGVXBlPJbRcg0oyfqhjSHkEPBExnZT3Wlg4m72walBqwpQ1WAXlB4oiuhSckXVzsyEKU7pYLTEMb2hDS9afMB4Uv8KvG1Krky3GtQvh4hXLm74kyuAhbv7KRZJdXBRlO-1R2Fq8RKunGG7gWGDnU9IVhw3AX4KqFR1ZU-LopIUkaxdu19lgVI3Sf585nBnVoRMbV_uuSGGNzhkueJ0w&h=x3H51zytu89EbVkgp4HjztR2mLgYoU82rGnLbRznKLA - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/078aff19-3c62-413d-a4f6-a54bc957910a?monitor=true&api-version=2023-01-01&t=638503099275706758&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=RpIOJfADiEGpnqrW9Jv5IwCjdfSatrsJOI-CvsLU1lJvsLCNMtH8tgTUidfijGPvXjJr40-SEBrxwIUfplPxE74VvLb3LtR1KUxQ5H3Fe7KWRXRey-sIZ3lI0OHLlqqCFwesdY6RhR8Uzd2oKnymuIQUYVHf0NzCSvzQVcp_N-NSwummco91ITRK0e_cS1gO50TmRbIXZsQpQdZ94hm8JZ_0QN2ToXnjaM1PrmNGu7_srwa3P3Cqkwc-aD_bRUUlH9-yFAyyrRpiMkSsDqNywQ4YHTnNBBaq3gPALVXSPYsE6LhLf7R7fDQEnFCpNA8kXBKSlHNLUtDBaglOhgSWcA&h=OTS3le53AqVeBfkxzAQKxEwgCPAgHg0MXMlK4DCYhII - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2E4E04450C8B4A11B782A5BD80F11FD7 Ref B: MNZ221060610019 Ref C: 2024-05-03T05:12:07Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/078aff19-3c62-413d-a4f6-a54bc957910a?monitor=true&api-version=2023-01-01&t=638503099275706758&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=RpIOJfADiEGpnqrW9Jv5IwCjdfSatrsJOI-CvsLU1lJvsLCNMtH8tgTUidfijGPvXjJr40-SEBrxwIUfplPxE74VvLb3LtR1KUxQ5H3Fe7KWRXRey-sIZ3lI0OHLlqqCFwesdY6RhR8Uzd2oKnymuIQUYVHf0NzCSvzQVcp_N-NSwummco91ITRK0e_cS1gO50TmRbIXZsQpQdZ94hm8JZ_0QN2ToXnjaM1PrmNGu7_srwa3P3Cqkwc-aD_bRUUlH9-yFAyyrRpiMkSsDqNywQ4YHTnNBBaq3gPALVXSPYsE6LhLf7R7fDQEnFCpNA8kXBKSlHNLUtDBaglOhgSWcA&h=OTS3le53AqVeBfkxzAQKxEwgCPAgHg0MXMlK4DCYhII - 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/sfrpcli5qbbsrqlgburu41","name":"sfrpcli5qbbsrqlgburu41","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:12:05.3375750Z","key2":"2024-05-03T05:12:05.3375750Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:05.3688197Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:05.3688197Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:12:05.2125983Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu41.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu41.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu41.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:12:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6124D61421B94B48B62AD1F58569605F Ref B: MNZ221060610019 Ref C: 2024-05-03T05:12:24Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu41?api-version=2023-01-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/sfrpcli5qbbsrqlgburu41","name":"sfrpcli5qbbsrqlgburu41","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:12:05.3375750Z","key2":"2024-05-03T05:12:05.3375750Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:05.3688197Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:05.3688197Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:12:05.2125983Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu41.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu41.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu41.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:12:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: ACCE3D367EB34252AB24AD0E6FEDBF08 Ref B: MNZ221060610019 Ref C: 2024-05-03T05:12:25Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu41/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T05:12:05.3375750Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T05:12:05.3375750Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:12:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: C2F2E72DF3744A2EA9BBFBF8F3DC3B6A Ref B: MNZ221060610019 Ref C: 2024-05-03T05:12:25Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu42?api-version=2023-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/75779c48-5dd4-4827-b170-e10408138568?monitor=true&api-version=2023-01-01&t=638503099485508408&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=oXR6ekw11Lw16Pl-qanc-h6NoyLjzT0YsFmQ8FZ6fQ_PTEsu_ZnWWbCOGUDhxLScXH8WsLU-FmtrsBAT806PPCjZAYk1U_tgB51ndF1eUjzJHPZBVLQehOf4HazZWEF-lR-KUoCJ740Y6ZXQXEtgwGU_XVwgEHdofrmLT7xaGxJ3RSUI9ZRZjleXeRtLbpCgDZMKnkXcrzGqBla5VZKtnmcwpPV9yyeeXPH7jISgAF7cctXX5y9hBhekr0ALDid7cEGkuA_ZlhaNDXqBHctvnbp53k0nRS7Cs7r4DunGj53nzV1PNgWGPizfmkU6pwm68F46yl4O9M0v4aY7ijeowA&h=_x9kWgh_NWg_S90JlUeKOcY4cYm3syJ37XQIX2UXVMo - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: A6C50514E262443AAE54057BCA9D566A Ref B: MNZ221060619017 Ref C: 2024-05-03T05:12:25Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/75779c48-5dd4-4827-b170-e10408138568?monitor=true&api-version=2023-01-01&t=638503099485508408&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=oXR6ekw11Lw16Pl-qanc-h6NoyLjzT0YsFmQ8FZ6fQ_PTEsu_ZnWWbCOGUDhxLScXH8WsLU-FmtrsBAT806PPCjZAYk1U_tgB51ndF1eUjzJHPZBVLQehOf4HazZWEF-lR-KUoCJ740Y6ZXQXEtgwGU_XVwgEHdofrmLT7xaGxJ3RSUI9ZRZjleXeRtLbpCgDZMKnkXcrzGqBla5VZKtnmcwpPV9yyeeXPH7jISgAF7cctXX5y9hBhekr0ALDid7cEGkuA_ZlhaNDXqBHctvnbp53k0nRS7Cs7r4DunGj53nzV1PNgWGPizfmkU6pwm68F46yl4O9M0v4aY7ijeowA&h=_x9kWgh_NWg_S90JlUeKOcY4cYm3syJ37XQIX2UXVMo - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/75779c48-5dd4-4827-b170-e10408138568?monitor=true&api-version=2023-01-01&t=638503099519043951&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=XyJ4P86JMMVEMMk573ICQdCc1-QuupiwM_Tzd9aGJn2qIu0-FzVXHErWSkhl-WpYyYGfjU_-qm02pabijAdCURMuzmjQ-yDoYgxqwOwsqiUPioY0v_4vRovkd9IFZ7Gcn08sUperoU6WFHN2EmpxrU_vm98tQI956c0c3HYAu8QYRVADI4Wrtoj0vmJYQYNyYsw55IvYav1R8_dv1ffT83riHjm5MPuVWOKxej0VwlIKi3FyOezfnrFkoh3aKkYmgN5wEn6haKvAlnlYM6yaWCCetl9vrS48Gh62rU3h7ynfbTiqYPI-tRRMbtJcxr1wL-sdaQ_4gTe7pu-Dtp9Abg&h=lTm_bcbRWjGf1PKr0TvJZ_s4tX6qg2URKEsOqWht4Tg - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 405F973BD1814F6DA10E453046D71909 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:12:31Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/75779c48-5dd4-4827-b170-e10408138568?monitor=true&api-version=2023-01-01&t=638503099519043951&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=XyJ4P86JMMVEMMk573ICQdCc1-QuupiwM_Tzd9aGJn2qIu0-FzVXHErWSkhl-WpYyYGfjU_-qm02pabijAdCURMuzmjQ-yDoYgxqwOwsqiUPioY0v_4vRovkd9IFZ7Gcn08sUperoU6WFHN2EmpxrU_vm98tQI956c0c3HYAu8QYRVADI4Wrtoj0vmJYQYNyYsw55IvYav1R8_dv1ffT83riHjm5MPuVWOKxej0VwlIKi3FyOezfnrFkoh3aKkYmgN5wEn6haKvAlnlYM6yaWCCetl9vrS48Gh62rU3h7ynfbTiqYPI-tRRMbtJcxr1wL-sdaQ_4gTe7pu-Dtp9Abg&h=lTm_bcbRWjGf1PKr0TvJZ_s4tX6qg2URKEsOqWht4Tg - 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/sfrpcli5qbbsrqlgburu42","name":"sfrpcli5qbbsrqlgburu42","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:12:26.4002738Z","key2":"2024-05-03T05:12:26.4002738Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:26.4315559Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:26.4315559Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:12:26.2596127Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu42.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu42.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu42.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:12:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 563EA92FB6FC4AA2AA8F771AC09CF10C Ref B: MNZ221060619017 Ref C: 2024-05-03T05:12:48Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu42?api-version=2023-01-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/sfrpcli5qbbsrqlgburu42","name":"sfrpcli5qbbsrqlgburu42","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:12:26.4002738Z","key2":"2024-05-03T05:12:26.4002738Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:26.4315559Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:26.4315559Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:12:26.2596127Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu42.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu42.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu42.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:12:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B48E32C44DE6483785A9A31BFF7B8CE2 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:12:49Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu42/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T05:12:26.4002738Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T05:12:26.4002738Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:12:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: 6A89BD9ED2B24E48AB124D55C4B439A1 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:12:49Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu43?api-version=2023-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a6ae63b5-be2c-47b0-89db-6ff8b68eca96?monitor=true&api-version=2023-01-01&t=638503099735074910&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=eHOr_LtT7pg4cuW-nVP7uY1VnYEvqCeE8F8KWkSCiWg9vdXIoTV80kDbAP3jzNXflbH3M1S_2W0vPSJfsP-6QlnGITLWpnQrerolulg7IbYt864gs4YPDz_CswP4XTqG7WAFQl47Y90I23O_57wAYF5GDGL_c77xIkXhrw23qZcMzhxefnh1h038fKdfC9PTKJGkU21dNUQ1-9TT_D3bq6s8QhUzp4td-iqe2na04K9nrMULmyKO-7BxxZSlXnmPGoz1p0-nfJM0_gmMQHybFLz87HFi_59ufEraIR_MsCHSunU1fsQ4yaBBQCSpAfek4sjGUs5P3th6OPrWbILqtQ&h=VYOOpAUpxLwKX3m0lcVogAAkdUsRnN1V6x_A1N9of98 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 3111395639864953A2CB79B1F8C4FC7E Ref B: MNZ221060618037 Ref C: 2024-05-03T05:12:49Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a6ae63b5-be2c-47b0-89db-6ff8b68eca96?monitor=true&api-version=2023-01-01&t=638503099735074910&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=eHOr_LtT7pg4cuW-nVP7uY1VnYEvqCeE8F8KWkSCiWg9vdXIoTV80kDbAP3jzNXflbH3M1S_2W0vPSJfsP-6QlnGITLWpnQrerolulg7IbYt864gs4YPDz_CswP4XTqG7WAFQl47Y90I23O_57wAYF5GDGL_c77xIkXhrw23qZcMzhxefnh1h038fKdfC9PTKJGkU21dNUQ1-9TT_D3bq6s8QhUzp4td-iqe2na04K9nrMULmyKO-7BxxZSlXnmPGoz1p0-nfJM0_gmMQHybFLz87HFi_59ufEraIR_MsCHSunU1fsQ4yaBBQCSpAfek4sjGUs5P3th6OPrWbILqtQ&h=VYOOpAUpxLwKX3m0lcVogAAkdUsRnN1V6x_A1N9of98 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:12:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a6ae63b5-be2c-47b0-89db-6ff8b68eca96?monitor=true&api-version=2023-01-01&t=638503099737354095&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=MleBrERRB18A-7OTTMzQa0zowqyCOEU0XeZtz_9o5QSa69JxBI6fZ9n11cCtmdL7--fNXQXG1jgtv3FMhfDqhNSwFVhqsUHpDiAlR49DQ9EE8IqbJylgfdkhGVU4ABIJMsg280pbzq-kk_J8JUDNnE2ANDmrrK1AlbGXl4HfoRBIzqN3UPIhaSX4yGViLRR2b32RzdngK6dN1Pky9veYUAYeOy1oGj08yImw9VT7WhZ3C9BF-SIGnETmuRR7FBEKxZBZxO4gM3eu_0vfec1NFMahbZQwjza5w4rwpOqX8u7V_0PiHPLfb5C9ylRCcQ6XA9OiHhbMobZ8i5OmZpIbqA&h=zQMKjkd-94Z8QEQmpByn_lucfkU1cwVacsZBFb1vEDU - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: ABCF0554D57E4C288BF33D884FABD4ED Ref B: MNZ221060618037 Ref C: 2024-05-03T05:12:53Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a6ae63b5-be2c-47b0-89db-6ff8b68eca96?monitor=true&api-version=2023-01-01&t=638503099737354095&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=MleBrERRB18A-7OTTMzQa0zowqyCOEU0XeZtz_9o5QSa69JxBI6fZ9n11cCtmdL7--fNXQXG1jgtv3FMhfDqhNSwFVhqsUHpDiAlR49DQ9EE8IqbJylgfdkhGVU4ABIJMsg280pbzq-kk_J8JUDNnE2ANDmrrK1AlbGXl4HfoRBIzqN3UPIhaSX4yGViLRR2b32RzdngK6dN1Pky9veYUAYeOy1oGj08yImw9VT7WhZ3C9BF-SIGnETmuRR7FBEKxZBZxO4gM3eu_0vfec1NFMahbZQwjza5w4rwpOqX8u7V_0PiHPLfb5C9ylRCcQ6XA9OiHhbMobZ8i5OmZpIbqA&h=zQMKjkd-94Z8QEQmpByn_lucfkU1cwVacsZBFb1vEDU - 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/sfrpcli5qbbsrqlgburu43","name":"sfrpcli5qbbsrqlgburu43","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:12:50.7442267Z","key2":"2024-05-03T05:12:50.7442267Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:50.7755716Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:50.7755716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:12:50.6036257Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu43.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu43.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu43.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 75BC8D42AD924E58B47DD6E01DBF2189 Ref B: MNZ221060618037 Ref C: 2024-05-03T05:13:10Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu43?api-version=2023-01-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/sfrpcli5qbbsrqlgburu43","name":"sfrpcli5qbbsrqlgburu43","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:12:50.7442267Z","key2":"2024-05-03T05:12:50.7442267Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:50.7755716Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:12:50.7755716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:12:50.6036257Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu43.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu43.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu43.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F4A4F1731AE243F3A5CC8BA939FF2F5D Ref B: MNZ221060618037 Ref C: 2024-05-03T05:13:11Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu43/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T05:12:50.7442267Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T05:12:50.7442267Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: D5DECA4B1F914DFDAE9ECDEE21111553 Ref B: MNZ221060618037 Ref C: 2024-05-03T05:13:11Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu44?api-version=2023-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:13:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a3d12075-8943-4626-bf0b-78b62166af1e?monitor=true&api-version=2023-01-01&t=638503099954410533&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=RM-tW1w7bY0m-E9T8ns3zrnH58FniXo9JzMuxMG77BMT3jrQBNScWesKSBZW4mYX7MeqApfs7PmEE8LKRjNPKHAp5aHo1iSYUSl8aAvq8ING3T6HIDbQMGzivm7j2H16SNM87_stlCN_xGcfGmct0SkCGnvB25hDcrUZcOj-yxFTmHrh_ggYOqR-9XAJc5_awA69RW_1YKMWzXX2eIGUBe664Qr2rmdD2qOrsQKjhMWdeXw91HxTV10Gs45-kCGaeb33Ic1z_PhJIWf68flV5Ryk7u5HqCUvTSwbMKuqTU9AJfbEtua_KkBQqmdRBS77loWLhx5jkbQ2Cqz1WTFa6Q&h=OvvbsFf5Ulzw5Ufj_kMBt3zsrprv5Mz0DYd8yb7l3Sk - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 3E02D75D7BCA4A7E810538CB0B4C43A0 Ref B: MNZ221060618021 Ref C: 2024-05-03T05:13:12Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a3d12075-8943-4626-bf0b-78b62166af1e?monitor=true&api-version=2023-01-01&t=638503099954410533&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=RM-tW1w7bY0m-E9T8ns3zrnH58FniXo9JzMuxMG77BMT3jrQBNScWesKSBZW4mYX7MeqApfs7PmEE8LKRjNPKHAp5aHo1iSYUSl8aAvq8ING3T6HIDbQMGzivm7j2H16SNM87_stlCN_xGcfGmct0SkCGnvB25hDcrUZcOj-yxFTmHrh_ggYOqR-9XAJc5_awA69RW_1YKMWzXX2eIGUBe664Qr2rmdD2qOrsQKjhMWdeXw91HxTV10Gs45-kCGaeb33Ic1z_PhJIWf68flV5Ryk7u5HqCUvTSwbMKuqTU9AJfbEtua_KkBQqmdRBS77loWLhx5jkbQ2Cqz1WTFa6Q&h=OvvbsFf5Ulzw5Ufj_kMBt3zsrprv5Mz0DYd8yb7l3Sk - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:13:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a3d12075-8943-4626-bf0b-78b62166af1e?monitor=true&api-version=2023-01-01&t=638503099956416772&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=UBwQOmsVagcit1X8Ngzrejy-2P4WW2IryRPUkk_Rh4lbM0mo90I7lyzQqLF_kJpeJH_RsId3Fv5PalxcPqAu27fyhdM98fFbipCKfBjHtaylhOo1e-LEDsJO6Z9h8AF-P6kG5Z9Vx3vMt_TExwHIW8nO6f_Xse5C1ff8Hax0L3ziPLf_vUkoMS9lES3KLZqY1XaatpO2FYy-b5kyaWoUHbjnrjRubq8as8T2sqCAHsaXxjhrpbXuedW2Q6OsbUeBluYa8WOMzEP6O9DySMEbMDLCf9wIIKY4PpQDTgsXDqvQs4ptAgFRL_AgvF0AzQzsLQAdyNE56gbu1DHF06ioNw&h=NAwaAcWugxWQVG3LvJ0oWwOeMgNp-AvEkv0lGeB0a9I - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0F27C6F7416B471D81D1AF09CDA5A29B Ref B: MNZ221060618021 Ref C: 2024-05-03T05:13:15Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/a3d12075-8943-4626-bf0b-78b62166af1e?monitor=true&api-version=2023-01-01&t=638503099956416772&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=UBwQOmsVagcit1X8Ngzrejy-2P4WW2IryRPUkk_Rh4lbM0mo90I7lyzQqLF_kJpeJH_RsId3Fv5PalxcPqAu27fyhdM98fFbipCKfBjHtaylhOo1e-LEDsJO6Z9h8AF-P6kG5Z9Vx3vMt_TExwHIW8nO6f_Xse5C1ff8Hax0L3ziPLf_vUkoMS9lES3KLZqY1XaatpO2FYy-b5kyaWoUHbjnrjRubq8as8T2sqCAHsaXxjhrpbXuedW2Q6OsbUeBluYa8WOMzEP6O9DySMEbMDLCf9wIIKY4PpQDTgsXDqvQs4ptAgFRL_AgvF0AzQzsLQAdyNE56gbu1DHF06ioNw&h=NAwaAcWugxWQVG3LvJ0oWwOeMgNp-AvEkv0lGeB0a9I - 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/sfrpcli5qbbsrqlgburu44","name":"sfrpcli5qbbsrqlgburu44","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:13:13.3382195Z","key2":"2024-05-03T05:13:13.3382195Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:13.3538285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:13.3538285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:13:13.1975796Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu44.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu44.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu44.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3F27A08D3DEA463A8D39E9109FF76F15 Ref B: MNZ221060618021 Ref C: 2024-05-03T05:13:32Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu44?api-version=2023-01-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/sfrpcli5qbbsrqlgburu44","name":"sfrpcli5qbbsrqlgburu44","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:13:13.3382195Z","key2":"2024-05-03T05:13:13.3382195Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:13.3538285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:13.3538285Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:13:13.1975796Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu44.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu44.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu44.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F876E41C157A4FB394B255BB5BD2A510 Ref B: MNZ221060618021 Ref C: 2024-05-03T05:13:33Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu44/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T05:13:13.3382195Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T05:13:13.3382195Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: F80C54D17CBB4C8C86F871449D2E88F1 Ref B: MNZ221060618021 Ref C: 2024-05-03T05:13:33Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu45?api-version=2023-01-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:13:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b1855168-d935-43fb-9630-2abdf3da60aa?monitor=true&api-version=2023-01-01&t=638503100165887179&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=AEiN9ZiS78H6yuP813inFV2P42ZCLh0zK4Nv3-GiYvLyhJvtbZwWgDmQfuapXVlurexvyi85wKqN7sSiDm-j3Z3gA9D7HeAEVJi06OqScqflIdrgTXs8b2w3X5ngC62ujaJHjtb5-PzT_fnXpNtAxG2gRxeIbnZt0JtqCRqyz9WKoIQGwcNTVMQMf4Bo2s4vMR2r5D-Ui_S1U8KUk1NZGg7xEARePJBFWcRYffYWytVzSG74NtA8dVAYK--A2BFZZ-s0A_m504W0F9VEm_DeRthrgfEV0E3QZRm2fn3VOamo4A3Ak54SYD4DncEk6jPoahou8koyfmWPwDaBllJKEA&h=Vw9QRbfGJ-Trw2LOn1wwJPCFUNAmqozVU5OHVXt0jNE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: 9D08082998264B42A8AF6201C83ED205 Ref B: MNZ221060608019 Ref C: 2024-05-03T05:13:33Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b1855168-d935-43fb-9630-2abdf3da60aa?monitor=true&api-version=2023-01-01&t=638503100165887179&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=AEiN9ZiS78H6yuP813inFV2P42ZCLh0zK4Nv3-GiYvLyhJvtbZwWgDmQfuapXVlurexvyi85wKqN7sSiDm-j3Z3gA9D7HeAEVJi06OqScqflIdrgTXs8b2w3X5ngC62ujaJHjtb5-PzT_fnXpNtAxG2gRxeIbnZt0JtqCRqyz9WKoIQGwcNTVMQMf4Bo2s4vMR2r5D-Ui_S1U8KUk1NZGg7xEARePJBFWcRYffYWytVzSG74NtA8dVAYK--A2BFZZ-s0A_m504W0F9VEm_DeRthrgfEV0E3QZRm2fn3VOamo4A3Ak54SYD4DncEk6jPoahou8koyfmWPwDaBllJKEA&h=Vw9QRbfGJ-Trw2LOn1wwJPCFUNAmqozVU5OHVXt0jNE - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Fri, 03 May 2024 05:13:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b1855168-d935-43fb-9630-2abdf3da60aa?monitor=true&api-version=2023-01-01&t=638503100167952493&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=OFknRsQPLiuDWIwqQ3FstLsnIHu6qQlGwQWWYNSbGTm5osB26fm6WMlI-hwMqH9sKhbIlmacw30tM9_KhRB2H28UHtvQeREdZWGM8o6UNTUAZjatb6b_y0zJCtfifTqHaeePx2pd2zedAGrAJpnH1xlCbl8uoua8-EDfseAXc0pgGQRycH-idOkFVX04kg8M_bOFRckIXWwPIcjftzrJsSWxTwcpmpVbnv_m2WyGFzKqigPHCfyjPs_xvv0cyNPavzVjkztk2SiNLj_nWz_5JNGmwaOvGMBXjljTbyPg_h6jeeN7hj7xUd0NjVLt-F9dDPGDgrhAGWztnw93fuqFcg&h=8a4zApJ-rfLTvZbcovIB7l5Bn09llJsYVSd7xOZd68E - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CF7581FE3EEF48878CEA241D9232255D Ref B: MNZ221060608019 Ref C: 2024-05-03T05:13:36Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b1855168-d935-43fb-9630-2abdf3da60aa?monitor=true&api-version=2023-01-01&t=638503100167952493&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=OFknRsQPLiuDWIwqQ3FstLsnIHu6qQlGwQWWYNSbGTm5osB26fm6WMlI-hwMqH9sKhbIlmacw30tM9_KhRB2H28UHtvQeREdZWGM8o6UNTUAZjatb6b_y0zJCtfifTqHaeePx2pd2zedAGrAJpnH1xlCbl8uoua8-EDfseAXc0pgGQRycH-idOkFVX04kg8M_bOFRckIXWwPIcjftzrJsSWxTwcpmpVbnv_m2WyGFzKqigPHCfyjPs_xvv0cyNPavzVjkztk2SiNLj_nWz_5JNGmwaOvGMBXjljTbyPg_h6jeeN7hj7xUd0NjVLt-F9dDPGDgrhAGWztnw93fuqFcg&h=8a4zApJ-rfLTvZbcovIB7l5Bn09llJsYVSd7xOZd68E - 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/sfrpcli5qbbsrqlgburu45","name":"sfrpcli5qbbsrqlgburu45","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:13:34.5103248Z","key2":"2024-05-03T05:13:34.5103248Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:34.5259448Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:34.5259448Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:13:34.3696264Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu45.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu45.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu45.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu45.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 43CF6BA5D8914DE798CF83680A617ADD Ref B: MNZ221060608019 Ref C: 2024-05-03T05:13:53Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu45?api-version=2023-01-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/sfrpcli5qbbsrqlgburu45","name":"sfrpcli5qbbsrqlgburu45","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2024-05-03T05:13:34.5103248Z","key2":"2024-05-03T05:13:34.5103248Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"ipv6Rules":[],"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:34.5259448Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-05-03T05:13:34.5259448Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-05-03T05:13:34.3696264Z","primaryEndpoints":{"blob":"https://sfrpcli5qbbsrqlgburu45.blob.core.windows.net/","queue":"https://sfrpcli5qbbsrqlgburu45.queue.core.windows.net/","table":"https://sfrpcli5qbbsrqlgburu45.table.core.windows.net/","file":"https://sfrpcli5qbbsrqlgburu45.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1390' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7844A071C7094E528D136F348C402993 Ref B: MNZ221060608019 Ref C: 2024-05-03T05:13:54Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli5qbbsrqlgburu45/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T05:13:34.5103248Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T05:13:34.5103248Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: 67BBC4E483914EBA973C4DE2C22D220A Ref B: MNZ221060608019 Ref C: 2024-05-03T05:13:54Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/o2573pyqgc42g3/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T04:46:25.5887793Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T04:46:25.5887793Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: E96B4F60FC9A46A784C07319FE94B062 Ref B: MNZ221060610053 Ref C: 2024-05-03T05:13:54Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogso2573pyqgc42g2/listKeys?api-version=2023-01-01&$expand=kerb - response: - body: - string: '{"keys":[{"creationTime":"2024-05-03T04:46:25.6823025Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2024-05-03T04:46:25.6823025Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '260' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:13:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - x-msedge-ref: - - 'Ref A: 0F292616F2C841EBB8CAD6FF0CAABF57 Ref B: MNZ221060619037 Ref C: 2024-05-03T05:13:55Z' - 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/clitestrgvghrhbh2k2uh"}, - "vaultCertificates": [{"certificateUrl": "https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3", - "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": - "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", - "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", - "createOption": "FromImage", "vhdContainers": ["https://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd", - "https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd", "https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd", - "https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd", "https://sfrpcli5qbbsrqlgburu45.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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7", - "nodeTypeRef": "nt2", "dataPath": "D:\\\\SvcFab", "durabilityLevel": "Bronze", - "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "E5ABD1685BFE82301214495006FAE8E4119CE58C", - "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": "o2573pyqgc42g3"}, "protectedSettings": {"storageAccountName": - "o2573pyqgc42g3", "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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2023-09-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 \"orchestrationMode\": \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu45.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,\"disableTcpStateTracking\":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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 - \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": - \"2024-05-03T05:13:56.91067+00:00\"\r\n },\r\n \"provisioningState\": - \"Creating\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"8c793d8a-9d47-42c4-9590-3135d8e159d6\",\r\n - \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2024-05-03T05:13:56.91067+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/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - cache-control: - - no-cache - content-length: - - '6473' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:13:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5995,Microsoft.Compute/VmssQueuedVMOperations;0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '5' - x-msedge-ref: - - 'Ref A: 40536589427E4B73974F642440D1C198 Ref B: MNZ221060608021 Ref C: 2024-05-03T05:13:55Z' - status: - code: 201 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:13:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: AFC882EBFBB44945820AC410755DFCBC Ref B: MNZ221060608021 Ref C: 2024-05-03T05:13:57Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:15:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 00A579164DA743C690C8EC23E8A339B2 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:15:35Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:16:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 5E6002F310F74284AEEE46318D7C5D68 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:16:06Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:16:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: A1898376D269442A83191A5D0285029D Ref B: MNZ221060608011 Ref C: 2024-05-03T05:16:36Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:17:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 5DB84DD4748947ADAA03523D607029C2 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:17:06Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:17:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 04D8311C11524097B77DA7CD62CF7612 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:17:37Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:18:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 16A147BF9B7748FB975B52634960AE48 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:18:07Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:18:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 - x-msedge-ref: - - 'Ref A: 796D1C3959DE41FF97FB68BE1000F9C0 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:18:38Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:19:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: DA6E950F084B4C01A2725ED50048F901 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:19:08Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:19:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: BD5E909AFF7D4B34974399E9744BAF30 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:19:38Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:20:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: E54CF8E33C5344B5AB18C6C81BED4A05 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:20:09Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:20:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: F4A2CC18CA85464594964A78ED1623CC Ref B: MNZ221060608011 Ref C: 2024-05-03T05:20:39Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:21:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 33FA32CB6AF043778B40A30E88B73B2D Ref B: MNZ221060608011 Ref C: 2024-05-03T05:21:09Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/56d992ee-3f58-4641-bc44-7c09eb22a9b3?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503100376764486&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=tRu-aRWqgeRpmlssQ0v2SVmLITUjSx5CRWZEAv2O-sOlqHtNky8jpTfxFjKWFX3SWX8Z06rvdvADahzDeHsVV9QpwlfCJhsv7wXahAD1SqMkefy8Bl2KKne6Kva2Yd-6d_NzOeymvEazsqk3Tw7NB1m-Swlxybats8102dvpsj_symJwG1rzo5LmblBOeXtSmBfDA5AzqBOGNtaOzs8uTV1dxtMunX6UzxSdXnnKwz6IzQPbcZK5I3hznoLBWVLl_BhtKJyfCuBBrfn1AgqrDAT12PbNaJADfNpAakQpEX1E5Pa5Q37K7lw1rHAdatBI3DRYjujdgXXKJDUzUtqv5Q&h=Vr6UtGI8v8vdnL4EuL0T3PAANUYiSkpgHhMUUTpae7Q - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:13:56.8950454+00:00\",\r\n \"endTime\": - \"2024-05-03T05:21:21.4243201+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"56d992ee-3f58-4641-bc44-7c09eb22a9b3\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:21:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 61AE33DE0DD0447F89F65903A30A1533 Ref B: MNZ221060608011 Ref C: 2024-05-03T05:21:40Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2023-09-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 \"orchestrationMode\": \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu45.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,\"disableTcpStateTracking\":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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 - \ }\r\n }\r\n ]\r\n },\r\n \"timeCreated\": - \"2024-05-03T05:13:56.91067+00:00\"\r\n },\r\n \"provisioningState\": - \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"8c793d8a-9d47-42c4-9590-3135d8e159d6\",\r\n - \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2024-05-03T05:13:56.91067+00:00\"\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '6474' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:21:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2397,Microsoft.Compute/GetVMScaleSetResource;33 - x-msedge-ref: - - 'Ref A: 07EEFF2B54A047BF997DFD59717DCE1E Ref B: MNZ221060608011 Ref C: 2024-05-03T05:21:40Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496893\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:59:31.7354866+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n },\r\n - \ {\r\n \"name\": \"nt2\",\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 \"vmInstanceCount\": 5,\r\n \"isStateless\": - false\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n - \ \"storageAccountName\": \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogso2573pyqgc42g2.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\": - \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"upgradeWave\": - \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3402' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:21:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 7FB199C301CF46EA9F097394ABD5416B Ref B: MNZ221060610007 Ref C: 2024-05-03T05:21:40Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496893\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T04:59:31.7354866+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n },\r\n - \ {\r\n \"name\": \"nt2\",\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 \"vmInstanceCount\": 5,\r\n \"isStateless\": - false\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n - \ \"storageAccountName\": \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogso2573pyqgc42g2.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\": - \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"upgradeWave\": - \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3402' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:21:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 77379645E3CE41FF9AA41D2E87346667 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:21:41Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2023-09-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 \"orchestrationMode\": - \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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,\"disableTcpStateTracking\":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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 \"enableAutomaticUpgrade\": true,\r\n \"suppressFailures\": - true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n - \ \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": - \"2.0\"\r\n }\r\n }\r\n ]\r\n },\r\n - \ \"timeCreated\": \"2024-05-03T04:53:58.7740734+00:00\"\r\n },\r\n - \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"54b028e7-1636-4ffb-9878-f2f4752fae37\",\r\n \"platformFaultDomainCount\": - 5,\r\n \"timeCreated\": \"2024-05-03T04:46:50.777753+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 \"orchestrationMode\": - \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu45.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,\"disableTcpStateTracking\":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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 }\r\n - \ }\r\n ]\r\n },\r\n \"timeCreated\": - \"2024-05-03T05:13:56.91067+00:00\"\r\n },\r\n \"provisioningState\": - \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": - false,\r\n \"uniqueId\": \"8c793d8a-9d47-42c4-9590-3135d8e159d6\",\r\n - \ \"platformFaultDomainCount\": 5,\r\n \"timeCreated\": \"2024-05-03T05:13:56.91067+00:00\"\r\n - \ }\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '13579' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:21:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSetSubscriptionMaximum;1079 - x-msedge-ref: - - 'Ref A: 71B8FE3C10794FCB9A953C9006EC63CD Ref B: MNZ221060619033 Ref C: 2024-05-03T05:21:41Z' - status: - code: 200 - message: '' -- 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, "isStateless": false}, - {"name": "nt2", "clientConnectionEndpointPort": 19000, "httpGatewayEndpointPort": - 19080, "durabilityLevel": "Silver", "applicationPorts": {"startPort": 20000, - "endPort": 30000}, "ephemeralPorts": {"startPort": 49152, "endPort": 65534}, - "isPrimary": false, "vmInstanceCount": 5, "isStateless": false}], "upgradeMode": - "Automatic"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster durability update - Connection: - - keep-alive - Content-Length: - - '662' - Content-Type: - - application/json - ParameterSetName: - - --resource-group -c --durability-level --node-type - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496894\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T05:21:42.7363824+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n },\r\n - \ {\r\n \"name\": \"nt2\",\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 \"vmInstanceCount\": 5,\r\n \"isStateless\": - false\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n - \ \"storageAccountName\": \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogso2573pyqgc42g2.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\": - \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"upgradeWave\": - \"Wave0\"\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - cache-control: - - no-cache - content-length: - - '3421' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:21:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operationResults/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028613942&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=qzuYM6G4aWHAriT9hrhAVBmw-aIEV7Q_QtLi1-tw8WQgD4B7IPSOMEi9QOrvB3lEnc6XyvlkQWGgNMnh02HHEsUOGsaDAATBNFsmlHmR_39RmdH18gQhDOCmO2Xm6cfHQQjsFLd8XLssttlu_nMelutRxeXHIwk5-xGNinp1AlV6199qOJysBxqYoh0M7JavjbadtyyLc8ZGWbiAfBfP_ORlAVl3liUaK2znDxBwiDvl0JfHM3QYpS6yd6IeHVcaNOjzpADUmide-gq1bdSXrBX70DdhDRqrIffX2X1vIwwdU-6U_9nZWFmR4_6g-AzDRJ4Bl8aB18PeuifGR5WWDg&h=5yhFoclY05nTZRzLS83OQi2R898hqklJshmYqJYmtJE - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-msedge-ref: - - 'Ref A: AB76D797A8CB46F09C6910E19CE5E695 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:21:42Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\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: - - Fri, 03 May 2024 05:21:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B38E7BD067A84BF0BC6D38B5D04D7BA7 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:21:42Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\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: - - Fri, 03 May 2024 05:22:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3A72543F751A4B72B835D9787A9B5B14 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:22:13Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\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: - - Fri, 03 May 2024 05:22:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 849B89F7B8C94BA88C1AB831392B987E Ref B: MNZ221060619017 Ref C: 2024-05-03T05:22:43Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\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: - - Fri, 03 May 2024 05:23:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B66D8A8BCEC0476393A96719D88728C5 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:23:13Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\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: - - Fri, 03 May 2024 05:23:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F4EB4C20FD5E4F19B07A3EECFE274B3A Ref B: MNZ221060619017 Ref C: 2024-05-03T05:23:44Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\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: - - Fri, 03 May 2024 05:24:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: C54EB35B958C4B6C9D7E249461285A37 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:24:15Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3478' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:24:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B6DA6965A25940018295ADC278FA52D6 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:24:45Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3478' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:25:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E15BFB337FD14780AA29FF91B8012D3C Ref B: MNZ221060619017 Ref C: 2024-05-03T05:25:16Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3902' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:25:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 3B6A5893D8A2452E9621388723B85FB1 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:25:46Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3902' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:26:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 68FDEFB6A5F845F9B7AAAC84B3B62FA2 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:26:16Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3902' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:26:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4F6C9DAE1A3748CBA57A822CC71F57AE Ref B: MNZ221060619017 Ref C: 2024-05-03T05:26:47Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3902' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:27:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BA322BA9B18E4FA1A60D3A93E6596F96 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:27:18Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3902' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:27:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2CE09AFC75434AD186C1DA3D983DFCF3 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:27:48Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3906' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:28:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 58B1A3CE052640AA9CF3759CEAA01AE7 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:28:19Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3906' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:28:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BBBBAE5203454B3D8BCDD34909C2327F Ref B: MNZ221060619017 Ref C: 2024-05-03T05:28:49Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4236' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:29:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 763172B1BFDF4B0AB56C0E5C53C1EF3B Ref B: MNZ221060619017 Ref C: 2024-05-03T05:29:19Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4236' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:29:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A04DD04600A241A99C0832073C4CA3E4 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:29:50Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3906' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 35825F944E594463A8DC539F1EADA901 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:30:20Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3906' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:30:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6ED66B2E08CC472599086D8ABE30A448 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:30:51Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3908' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:31:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 4CC3BD76B4CD4EE19638F01C8A559E9F Ref B: MNZ221060619017 Ref C: 2024-05-03T05:31:21Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3908' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:31:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: CF53B8CC0E0645CDB8BAAA1FCD0AA958 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:31:51Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3910' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:32:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9F618C936082464DB1315524AFE3854D Ref B: MNZ221060619017 Ref C: 2024-05-03T05:32:22Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3910' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:32:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 0634360EE9D74AFC9B5C398D769815D7 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:32:52Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4474' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:33:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 293D2A10F92C46C890B5F84F879AAE31 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:33:22Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4474' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:33:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 2DC8E3443E6A4DC7B4ADE8036B626E92 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:33:53Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '4146' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:34:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 88C65D42E1CB4E97ACDBF77460B9ADE8 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:34:23Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3910' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:34:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 9BDB6E9FBA71484B82E33E820921E2C4 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:34:54Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3910' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:35:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8BB4D570188F477B827143FF559599CA Ref B: MNZ221060619017 Ref C: 2024-05-03T05:35:24Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3912' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:35:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8478DD50B80E44B1B989FDE1988B3833 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:35:54Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3912' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:36:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: AA32C935C68540F79B3A5029163E29DA Ref B: MNZ221060619017 Ref C: 2024-05-03T05:36:25Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3914' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:36:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 58222907BEE044EFA3F2A240EC71599E Ref B: MNZ221060619017 Ref C: 2024-05-03T05:36:55Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3914' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:37:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 8924CFD67D9244CCB9A0744F428BE5CD Ref B: MNZ221060619017 Ref C: 2024-05-03T05:37:25Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3914' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:37:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D900B1BACDEF4B209906E3AFD21FE57D Ref B: MNZ221060619017 Ref C: 2024-05-03T05:37:56Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3914' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:38:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: FA87F4FAE7A94D9AAF660106A0AB3BD7 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:38:26Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:29\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3916' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:38:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 883D8463117C446CBDEDF1EBAAFAD6D2 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:38:57Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:29\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3916' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:39:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 57A7A001BD93459B8DE2C7B7D213FBB9 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:39:27Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3890' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:39:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 6CA4728F9EF443CDB2AC957244507A08 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:39:58Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"Invalid\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3890' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:40:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: D8510363C6F047E58E3D5367C7361CC0 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:40:28Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3891' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:40:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: E619FE77E9B741E8B2B73A73773B49B7 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:40:58Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:00\\\",\\\"healthCheckPhase\\\":\\\"WaitDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3891' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:41:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: A480DDEE13A848C58F32F2E8AFB0062E Ref B: MNZ221060619017 Ref C: 2024-05-03T05:41:29Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3893' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:41:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 13D43AACEC6F4AD5B933781FAE56DC7C Ref B: MNZ221060619017 Ref C: 2024-05-03T05:41:59Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"10.1.1951.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\\\":\\\"10.1.1951.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\\\":\\\"2024-05-03T05:23:45.3730157Z\\\",\\\"isNodeByNode\\\":false,\\\"healthCheckElapsedTime\\\":\\\"00:00:30\\\",\\\"healthCheckPhase\\\":\\\"StableDuration\\\",\\\"healthCheckFlips\\\":0}\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3893' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:42:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: B5AA5BECE0ED40CDBB401EB238116E44 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:42:29Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d?api-version=2021-06-01&Experiment=local&t=638503105028457574&c=MIIHKjCCBhKgAwIBAgITHgRy5Oci-xrmzRVcTAAABHLk5zANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNDMwMTgzMjQzWhcNMjUwNDI1MTgzMjQzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOpK6XZwrBOIcUuxSGOpz8RSDXHU9dX_RAFKhL5a3TnD-rcVvKzSrsLLvL2Dmv6C2VznuP21XRR8sJNyPHeOVWsj-hXvAbf0cbSfxXS-B2vDHKt8yYGj39JwFagf4FsGZoeU153CLLIoKymPUw2HSAjmJNUjFjVKEiiQ_IK8unJCXdwLGECk5vCcZ2o79qq2hhmO6YRymI68cufDBSU5wfT-9M3Egj3Fn6eyQjkUtzgtT0F4wGkCvIJ2zcycrgl4_LlQZT8XR7LMxCk2X3ZbjInJr4vzrnoZedVtDHpzMx-OtNkrVv6oVlc7Pnh_vziqbxQUrJ4UG2QdUGI4mlUJ-BUCAwEAAaOCBBcwggQTMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTvswley2TEn7fev4ZuZhZmFpAdRzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMEEGA1UdIAQ6MDgwDAYKKwYBBAGCN3sBATAMBgorBgEEAYI3ewIBMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJdDn6wRBPc9Z2S8R3maqst_Uh5SNQ0zZR4WaqLtzf0sBiQsre283aJqnr1XZevIzbHE_WZwT78HcEbE8MaBXJFrwrlRp9AEtOIbWHtjAjrdrTMzKzxraa_3AyQXp10xdnOQD9YYS1BMw9uBWadRIx597FNlExk94mMpGe_Fk026yaNStZfHoyzef4B85Mw-s1_CBNWtOqbYfFv3qsNHNxJMIjq9AAz63EKfb1TuEqh8LpwngTvGkKL66giASd8UkmDoSqghrInWSlq9QAyXKltPX2szSnJbUFK6tgwo7JFuozP-uMx1YXz8gsnEaKSom162zAu8eN4hvaylkZtAzmc&s=zAaNF34EKCK3F6HnDJPxWSKHYl_iFBJRSilnHRjC6piTzwKpRtYgLU2ybh6gfjI9dvSzQeCUxa93_3N_n1LV2xgrJeq1DzJikjcVaoStABGn6anY3pjPYX-8p2d2lPnsG5iC5U3Q8mvxNMiRxTSNIGZdk0VdG-NjNMhMkI2hBbuTvwqaRdR-5FOEeO4UtQ25wGIVSzkAP4ONIb2xtXQ9jtwxLRrvIlaoqppoVUdG9pDaHx7_7YARkFbl8ujzEpvx_JDIYQR2cj0r-6G8axpZ8Zvg40hQUwI5_g0BFrGSGTFTT_vHqETibYnmzl71ZYdPvOCkRhSQ4F-e4hTgPqJLnQ&h=drFuq_2zrUBhR-UdHltt5mGrwOU3cOAF7OkmfbejqU8 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n - \ \"name\": \"3cbf0002-e89b-4fa3-ba68-8bd7ead3c49d\",\r\n \"status\": \"Succeeded\",\r\n - \ \"startTime\": \"2024-05-03T05:21:42.7806015Z\",\r\n \"endTime\": \"2024-05-03T05:42:54.0062378Z\",\r\n - \ \"percentComplete\": 100.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '374' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:42:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: 716955DC7BAD46459B3B1348F8314BC4 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:43:00Z' - 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496894\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T05:21:42.7363824+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n },\r\n - \ {\r\n \"name\": \"nt2\",\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 \"vmInstanceCount\": 5,\r\n \"isStateless\": - false\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n - \ \"storageAccountName\": \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogso2573pyqgc42g2.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\": - \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"upgradeWave\": - \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3402' - content-type: - - application/json - date: - - Fri, 03 May 2024 05:42:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: BB8A2D8AFA914261AF1665F0FD8427A5 Ref B: MNZ221060619017 Ref C: 2024-05-03T05:43:00Z' - 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, "enableVMAgentPlatformUpdates": - false}, "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrgvghrhbh2k2uh"}, - "vaultCertificates": [{"certificateUrl": "https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3", - "certificateStore": "My"}]}], "allowExtensionOperations": true, "requireGuestProvisionSignal": - true}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer", - "offer": "WindowsServer", "sku": "2016-Datacenter", "version": "latest"}, "osDisk": - {"name": "vmssosdisk", "caching": "ReadOnly", "createOption": "FromImage", "osType": - "Windows", "vhdContainers": ["https://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd", - "https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd", "https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd", - "https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd", "https://sfrpcli5qbbsrqlgburu45.blob.core.windows.net/vhd"]}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", - "properties": {"primary": true, "enableAcceleratedNetworking": false, "disableTcpStateTracking": - 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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7", - "nodeTypeRef": "nt2", "dataPath": "D:\\\\SvcFab", "durabilityLevel": "Silver", - "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "E5ABD1685BFE82301214495006FAE8E4119CE58C", - "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": "o2573pyqgc42g3"}}}, {"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}}]}}, "overprovision": false, "doNotRunExtensionsOnOverprovisionedVMs": - false, "singlePlacementGroup": true, "platformFaultDomainCount": 5, "orchestrationMode": - "Uniform"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster durability update - Connection: - - keep-alive - Content-Length: - - '4898' - Content-Type: - - application/json - ParameterSetName: - - --resource-group -c --durability-level --node-type - User-Agent: - - AZURECLI/2.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2023-09-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 }\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 \"orchestrationMode\": \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu45.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,\"disableTcpStateTracking\":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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Silver\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 \"suppressFailures\": true,\r\n \"publisher\": - \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n - \ \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2024-05-03T05:43:02.7432081+00:00\"\r\n - \ },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"8c793d8a-9d47-42c4-9590-3135d8e159d6\",\r\n \"platformFaultDomainCount\": - 5,\r\n \"timeCreated\": \"2024-05-03T05:13:56.91067+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/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - cache-control: - - no-cache - content-length: - - '6832' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:43:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5995,Microsoft.Compute/VmssQueuedVMOperations;0 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '5' - x-msedge-ref: - - 'Ref A: 630D478EED8E49688AD47EC913A6879F Ref B: MNZ221060609037 Ref C: 2024-05-03T05:43:00Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:43:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 466386CA5ED54161BB95C4368D659EFC Ref B: MNZ221060609037 Ref C: 2024-05-03T05:43:03Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:43:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: E2792AC8DC9A4DB893C4F65E6875F9AF Ref B: MNZ221060609037 Ref C: 2024-05-03T05:43:54Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:44:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 7D19ED0F64064D28914A284EC3A10B15 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:44:25Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:44:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 8C6A42AD798D4030A29AB99CC79C76FB Ref B: MNZ221060609037 Ref C: 2024-05-03T05:44:55Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:45:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 058898FC1B33421AAB752252067187BF Ref B: MNZ221060609037 Ref C: 2024-05-03T05:45:26Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:45:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 86CBE3A4C3F747EAA453854262A45E09 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:45:56Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:46:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 38F61D1236FF4E6FABD3C196A6B8D31F Ref B: MNZ221060609037 Ref C: 2024-05-03T05:46:26Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:46:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 6C8D54E9C93B4A9C8FF90ED655EC36AF Ref B: MNZ221060609037 Ref C: 2024-05-03T05:46:57Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:47:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 4EF75A75979B49FFBF5D3403C7F0EC81 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:47:27Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:47:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 4062E9546FD3447E84541F8E2D240D7C Ref B: MNZ221060609037 Ref C: 2024-05-03T05:47:57Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:48:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 - x-msedge-ref: - - 'Ref A: 8828EE7A4ED44CE5AFD5E1611D0EAF7C Ref B: MNZ221060609037 Ref C: 2024-05-03T05:48:27Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:48:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: AD306CC78DEE4C14A1D2AD98A0C72397 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:48:58Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:49:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 6288EB3BF0F24802822112E3CC18CABA Ref B: MNZ221060609037 Ref C: 2024-05-03T05:49:28Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:49:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: CC2C752096254B7593DD8094DD740FC9 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:49:59Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:50:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 6F864CE66BD74BBBAFCF8C51A2D3881E Ref B: MNZ221060609037 Ref C: 2024-05-03T05:50:32Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:51:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: BE590395DE1A4EA3873B7B2292F8061E Ref B: MNZ221060609037 Ref C: 2024-05-03T05:51:02Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:51:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 4BCCDEB2145145EF954CA55208D51420 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:51:33Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:52:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 06E4743A1E1C4C689A8EF21E67CDF06B Ref B: MNZ221060609037 Ref C: 2024-05-03T05:52:03Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:52:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 4D7475661EC044E8A927B71A0587F62D Ref B: MNZ221060609037 Ref C: 2024-05-03T05:52:34Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:53:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 3BA3B1025D6B433CA35860959865970F Ref B: MNZ221060609037 Ref C: 2024-05-03T05:53:04Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:53:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 - x-msedge-ref: - - 'Ref A: E939582412B64220940DF5C73E5E4A6F Ref B: MNZ221060609037 Ref C: 2024-05-03T05:53:34Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:54:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 0D125429240D403586EDF5D219304514 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:54:05Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:54:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: F884B1F2750F43F99CAAC0482FB6F070 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:54:35Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:55:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: C72B020923034BEDA114796E410FF60C Ref B: MNZ221060609037 Ref C: 2024-05-03T05:55:05Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:55:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 63EF4ED3A13B42C09D7CD66FD028DEA8 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:55:36Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:56:06 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 31989AF47F25489F959092A23AE01E77 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:56:06Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:56:36 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: DCA7FE81DE6C4C3A957999989F43149B Ref B: MNZ221060609037 Ref C: 2024-05-03T05:56:36Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:57:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: DA218FFFD56B4B96A67D4035B83F26E9 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:57:07Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:57:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 90E10569E42348FBBA35B1C380C25E96 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:57:37Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:58:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 - x-msedge-ref: - - 'Ref A: 60116AACF77E42179344584C64F9A1F7 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:58:07Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:58:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 - x-msedge-ref: - - 'Ref A: 2D5F39D8FF82404085D21C5DD8550667 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:58:38Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:59:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: BDA1EACB89E74346A360EDE243D2548F Ref B: MNZ221060609037 Ref C: 2024-05-03T05:59:08Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 05:59:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: F8F0ED82DD1F48E4BC2FD3C49B4A41B4 Ref B: MNZ221060609037 Ref C: 2024-05-03T05:59:38Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:00:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: EC49E60187EE42D5B37DF8F1B410C980 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:00:09Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:00:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 8E8FE1863071460983A7102AADEBA4B4 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:00:39Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:01:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: A569DA00FC774BC9A49D3C93DF07C83F Ref B: MNZ221060609037 Ref C: 2024-05-03T06:01:09Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:01:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 7B95F1E39C17462AA56C8BFBC454C514 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:01:40Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:02:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 6F84086C47C04583902EF9A49556B22A Ref B: MNZ221060609037 Ref C: 2024-05-03T06:02:10Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:02:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: E01FB19C118C489EA674E4CF831AF0BF Ref B: MNZ221060609037 Ref C: 2024-05-03T06:02:40Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:03:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 6A02EE28C3A142B09C6DEB1366BE2649 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:03:11Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:03:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 - x-msedge-ref: - - 'Ref A: 6A43BBD69C49430D99C9C57B151E9251 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:03:41Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:04:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 8704DCCC3213404E8C31C1C4B42B3048 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:04:12Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:04:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: F69FF73A6E114BB49E2F407641253653 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:04:42Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:05:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 1C6142D533714B81BB6A57E44855C534 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:05:12Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:05:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 2779F04AD37F43E990580C91184805FB Ref B: MNZ221060609037 Ref C: 2024-05-03T06:05:43Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:06:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: E7E8496AD78744AE845AE4CAC27C31D2 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:06:13Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:06:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 3E24182C36514AFFBB8FF1C873C34E67 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:06:44Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:07:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: AF46419C9B9746C48A8E2A70EE9105DA Ref B: MNZ221060609037 Ref C: 2024-05-03T06:07:14Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:07:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 361085F4F4F7498A9A83A838B11BED3A Ref B: MNZ221060609037 Ref C: 2024-05-03T06:07:45Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:08:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995 - x-msedge-ref: - - 'Ref A: 4B4ED6B412084208B0D7E7448ABFC118 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:08:15Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:08:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14993 - x-msedge-ref: - - 'Ref A: 860240D32BD948C181AB51CAFA61BE2C Ref B: MNZ221060609037 Ref C: 2024-05-03T06:08:45Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:09:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: EE5DA12A13F7485FBC4CEC2B03F02A7B Ref B: MNZ221060609037 Ref C: 2024-05-03T06:09:16Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:09:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 874E0592C3FF4D78ACD306693F7C3324 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:09:46Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:10:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: AB63974745704D399A9BAD05885D4908 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:10:17Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:10:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 5F62A9DB2C5549C487B0EE26541419E9 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:10:47Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:11:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: A782A1FBD65A4C4AB1EDB9AF0D5B39A0 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:11:17Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:11:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 511C532225704307BDCA0A589EABB87A Ref B: MNZ221060609037 Ref C: 2024-05-03T06:11:48Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:12:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 54F14A1D34464CB099767C4477D7CA96 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:12:18Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:12:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 4D837209370E422F8AD3B179DEE67D88 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:12:48Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:13:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 2372F512B3234E199C33D5E0115204C0 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:13:19Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:13:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 - x-msedge-ref: - - 'Ref A: 2162970CC48F4821AD7204E666DF4176 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:13:50Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:14:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 4F8221780C744CF2A21E20C73E9494FB Ref B: MNZ221060609037 Ref C: 2024-05-03T06:14:20Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:14:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 052CCB1BBD064C8EAD85C23E83E5BB2D Ref B: MNZ221060609037 Ref C: 2024-05-03T06:14:50Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:15:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 04B457DDEAC6421E9F5C6C4CD674F1A1 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:15:21Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:15:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: 833A23BD74B04F4DB6D27E442E8FB548 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:15:51Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:16:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: C68FFC7F5EBA4EEE848779E3F112068E Ref B: MNZ221060609037 Ref C: 2024-05-03T06:16:21Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:16:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 431B141C95884064B599D37391683755 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:16:52Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:17:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 3AF0342B696F4BC0B44B64B9CBC0E969 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:17:22Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:17:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 44E78B78FC2044008FFE98914B83D9A1 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:17:52Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:18:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14994 - x-msedge-ref: - - 'Ref A: 592658DC8EED4B1CAD216A794D093B69 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:18:23Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:18:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: BE30B53D402F46ECA7499576465CE7E7 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:18:53Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:19:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 12F33E517C044440B318E09BB6D89F1B Ref B: MNZ221060609037 Ref C: 2024-05-03T06:19:23Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:19:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 6D5258F84D5B4260941DB6D9A06E7484 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:19:54Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:20:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 254C9D886A99468A96316CC4CD17E96C Ref B: MNZ221060609037 Ref C: 2024-05-03T06:20:24Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:20:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 73F1D8518A584BFC9AECD8A25CAD49E1 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:20:55Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:21:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998 - x-msedge-ref: - - 'Ref A: 35946E864D8E4AD3BC6CEE1F93A69620 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:21:25Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:21:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: CEDE6F1E2187443F9E5F3A5AAF6DCBCC Ref B: MNZ221060609037 Ref C: 2024-05-03T06:21:55Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:22:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 688EFC82ECFF4FA7AAB8C183DC76F4DC Ref B: MNZ221060609037 Ref C: 2024-05-03T06:22:26Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:22:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 9D95E275E8FE47F1B9719C0A597C242B Ref B: MNZ221060609037 Ref C: 2024-05-03T06:22:56Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:23:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 31099425279E47D68869751E0EDC9E92 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:23:26Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:23:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 3AC6BB1282DD482980FE16C7E939AF77 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:23:57Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:24:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996 - x-msedge-ref: - - 'Ref A: 7A4DA93497FD4B9D8A9DD6264EF62A99 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:24:27Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:24:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 76CAC9BB97764C7292FA0191B49FED3F Ref B: MNZ221060609037 Ref C: 2024-05-03T06:24:57Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:25:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997 - x-msedge-ref: - - 'Ref A: C9A113D436D44CD2A8C94DEC6CB37B57 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:25:28Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/00c6781c-666f-4c15-ad08-9cfdd1d8c34d?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2023-09-01&t=638503117835092710&c=MIIHHjCCBgagAwIBAgITOgKYMsjF2b7LauhN0AAEApgyyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwMjAxMTIyNjQyWhcNMjUwMTI2MTIyNjQyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMc6LeWeOAaTapwYz_M49L1VnORab6YTpwLCwmxVWB4gwKTMBTmZE4saFVHP8ucZaaSOGOKBWpswbI7pIUIor6tJZtCkG43ZSGvPP8k8R2tzhLBkAqnyiF7I2NPVowqOCrUhoTfTw5_Rp1bjqTvjRnTtPsbSQX6rOcZ6PLNv5kPzxHtubphb-8oLxSX0xoAjYbiUfoO-Gnf1qVOFFWTgyWFpk17LRz8h04unm1y8YKkpfjcQ2bRNL5Gmr4zX_eLNFtC-x2zlYTK7F84MnG0jRyjImNx0jLTSY0Ug2kBcjC9NtGcrVIgwMRo8mtAqJbl-t1oT9_g6iTDwGRm2XP9UklUCAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBTzsBP1TbO4yLR6cLGeWQ2ro5HzZzAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAD4mRGDGmDi9qTaK0C1VvqM3Z09ZRygYqrV4phOqa2GNdfahu_bsZlimgC1O_Lx6hJwrIAXuIIv1B4BpMW4aOYUANoElTlzJM15ai4ijNhOYktD-Fu1wR6tgp8V9Leq_iSbNal00zg9ePy2McmeIsMUDUd4CW5jYRf8XjPjclj311ODC-7XxRexpD_XMQkp_l6rcl0pApBrzRVsqAYrNnZHgOa1174EzcdTgivQjSW3pcHnG_byS7heC4Sj8rCGmef456Oo7W81yYY23Tyg7uAfq3iJuOEdrmNNpDQDPEVmncEOYezS6m1DWB8mLoNORo_vpAR9MiyFBNUDF2YK9KQo&s=itrjVzo16oKdyBD4ROZh8rb1cwGNDqzy0gof7kgkjt6cJggohJ2Fwg3ZU24S0Slk7cChnBhIJfsaukhTb5rLn0rFtxN49EJbOpkUlkEXbWT5dF_PYRYCu2ltorwPgLSN3wD0p4IDFHxODLQhRBXl42wp-a73w6ygBVFWwFMGcktR9KyWaTp7xq-ExI2uFIwh2x7PtOAgbQFmdUXnoNeSnP-EXr4pC1hDs5zL-tEgYmwDp_q8mEpcn4DWmKXecqC6I1yPRs-ESrmmljzV6PIFv4RVUI8y-uYnuFUdlMZAlkhlGYTxP7GlhSGLSmtIDIVP3tlSed7nkulmOZ3VIo-H1g&h=eIGGOElO2u4yVjRIvCiyXeAXVJu3DrfYdoo2YLpiI3s - response: - body: - string: "{\r\n \"startTime\": \"2024-05-03T05:43:02.7432081+00:00\",\r\n \"endTime\": - \"2024-05-03T06:25:47.4708765+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"00c6781c-666f-4c15-ad08-9cfdd1d8c34d\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:25:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999 - x-msedge-ref: - - 'Ref A: 26612EBDF08B42A29BCCE47DF070C7E3 Ref B: MNZ221060609037 Ref C: 2024-05-03T06:25:59Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2023-09-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 \"orchestrationMode\": \"Uniform\",\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/clitestrgvghrhbh2k2uh\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://clitestrgvghrhbh2k2uh.vault.azure.net/secrets/sfrp-cli-000004/1816a0e2aef44be899f867977e76ded3\",\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://sfrpcli5qbbsrqlgburu41.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu42.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu43.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu44.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcli5qbbsrqlgburu45.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,\"disableTcpStateTracking\":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-5qbbsrqlg1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-5qbbsrqlg1/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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Silver\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\"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\":\"o2573pyqgc42g3\"}\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 \"suppressFailures\": true,\r\n \"publisher\": - \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n - \ \"typeHandlerVersion\": \"2.0\"\r\n }\r\n }\r\n - \ ]\r\n },\r\n \"timeCreated\": \"2024-05-03T05:43:02.7432081+00:00\"\r\n - \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"8c793d8a-9d47-42c4-9590-3135d8e159d6\",\r\n \"platformFaultDomainCount\": - 5,\r\n \"timeCreated\": \"2024-05-03T05:13:56.91067+00:00\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '6965' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 03 May 2024 06:25:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2394,Microsoft.Compute/GetVMScaleSetResource;30 - x-msedge-ref: - - 'Ref A: F130F8ECFA384D44A0268B8FA1328EFF Ref B: MNZ221060609037 Ref C: 2024-05-03T06:25:59Z' - status: - code: 200 - message: '' -- 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.60.0 azsdk-python-core/1.28.0 Python/3.9.13 (Windows-10-10.0.22631-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=2021-06-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/\\\"638503084087496894\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"mwesigwaguma@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2024-05-03T04:46:48.6795634+00:00\",\r\n \"lastModifiedBy\": \"mwesigwaguma@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2024-05-03T05:21:42.7363824+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n \"clusterCodeVersion\": - \"10.1.1951.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/2f2f8f62-e7f6-4e9d-a7d9-8117b3ada1c7\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"E5ABD1685BFE82301214495006FAE8E4119CE58C\",\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 - \ \"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 - \ \"vmInstanceCount\": 3,\r\n \"isStateless\": false\r\n },\r\n - \ {\r\n \"name\": \"nt2\",\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 \"vmInstanceCount\": 5,\r\n \"isStateless\": - false\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n - \ \"storageAccountName\": \"sflogso2573pyqgc42g2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogso2573pyqgc42g2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogso2573pyqgc42g2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogso2573pyqgc42g2.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\": - \"10.1.1951.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"upgradeWave\": - \"Wave0\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3402' - content-type: - - application/json - date: - - Fri, 03 May 2024 06:25:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-msedge-ref: - - 'Ref A: F3247060BEE04694A8FDF1F73DA30E19 Ref B: BL2AA2030102009 Ref C: 2024-05-03T06:25:59Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml deleted file mode 100644 index 317547eb5e0..00000000000 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type.yaml +++ /dev/null @@ -1,89073 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - 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":["2f442157-a11c-46b9-ae5b-6e39ff4e5849","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":[],"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":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2019-11-25T07:19:11Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"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-05-10T06:44:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"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":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"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":"SFS","dirSyncEnabled":true,"displayName":"Alfredo - Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE - ENGINEER","lastDirSyncTime":"2020-01-20T08:38:51Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo - Santamaria Gomez,OU=UserAccounts,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":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"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":"2019-11-20T18:48:41Z","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":"US","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P10200871","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"10200871","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91710758","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"41","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"309","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 - Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu, - Tassaduq H.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"TASSB","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1252188"}' - headers: - access-control-allow-origin: - - '*' - cache-control: - - no-cache - content-length: - - '16355' - content-type: - - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 - dataserviceversion: - - 3.0; - date: - - Wed, 22 Jan 2020 19:23:10 GMT - duration: - - '1432525' - expires: - - '-1' - ocp-aad-diagnostics-server-name: - - YCeo6veNZzyqH4rqbg7XRrujjIhZ2D1Pk7fkPTQFub8= - ocp-aad-session-key: - - zW0CeTbX6kA7sbFFGmHumPq-WVn4hzqE98tkKNKrImPXpOdGJH3T3YyifrO0PS_j_7Y0i4js99t7U48Y5KGuuaev7kokMuCa6mcm1fyrDBRc8F-l-dZS9urQn1AHRFxg.f05cYfJin-VhA7HSd7vHIeq8Q2v9GTgUYMZ9-Spwyo8 - pragma: - - no-cache - request-id: - - 64bdc8d2-87f6-41f8-8c6f-3119d5bf0370 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-ms-dirapi-data-contract-version: - - '1.6' - 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", "recover"], "secrets": ["get", "list", "set", "delete", - "backup", "restore", "recover"], "certificates": ["get", "list", "delete", "create", - "import", "update", "managecontacts", "getissuers", "listissuers", "setissuers", - "deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete", - "set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}}], - "enabledForDeployment": true, "enabledForTemplateDeployment": true}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - Content-Length: - - '814' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01 - 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":{},"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","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}' - headers: - cache-control: - - no-cache - content-length: - - '1141' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:23:12 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.1.0.269 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - keyvault create - Connection: - - keep-alive - ParameterSetName: - - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 - 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=2019-09-01 - 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":{},"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","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1137' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:23:42 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.1.0.269 - x-powered-by: - - ASP.NET - 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.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/create?api-version=7.0 - response: - body: - string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer - or PoP token."}}' - headers: - cache-control: - - no-cache - content-length: - - '87' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:23:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - 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-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - 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=CLIGetDefaultPolicy", "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}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '511' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL64sl6wVLgPxaPCIrS7h2Wqz0N1oYYDfW+DgHmHInIkZpYMcv2I4SgyYZ5mC3FpJbJakCXpPtNCxbQUJxUI2r7X4SIeZJpJYUHc3pdQaFY3gvWufwxVjmTQaLZrR165X27k5yyWC7W6Ky2hXUlpQ+CNUvdGUC5QjSakFjLiTPqtOeD/JXsZWtcymAMfX1tm4hMbN+2+D3+UAC+VUobj+wdz6oB5gKbSERrT29TrIkg5/znRqyDrn+eSXTdiDcWS3v2r5pl8o9nrsa27Eh/IU/EAoRydX+Ni0DgHVphv472mV7TTY6J7S5dF3Glo0jxqDtjpdqZcdmKFduzUcLcKF5MCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz4VXkwdvvmHgg95bMgURCRvL7Vih5LUpk0Z/f9WKEYgkUx8jhK04+50eJ4xjBvBE/jiATqbu1V4PvBzHD0oM71Zg6o8iHXcfd+nWFSdP0hPEn51Vlm8eQvWvnpezrCgLtBbame8eQWRw8JWuror7qwMbgdtOyoNJGgDSLtBws68hNSAPdC2iuhH8fy44XeQ/+iEL1p0oBHu2bYUXqCrttMf8kRpF7qtzgwdorYu/bYkERlg+iPrVraOg16JzwZV67iv5Pdx8FI9ItxVPI4iaV3xhXxlC32CDsiJ2+vn3zRgPnUDx0daoj+p3GfAqPmVeFWW+L95xWzFxFpJcDeyrv","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":"3f562d4bb9024ff585c162402cf9c26f"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:23:44 GMT - expires: - - '-1' - location: - - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=3f562d4bb9024ff585c162402cf9c26f - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - 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.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL64sl6wVLgPxaPCIrS7h2Wqz0N1oYYDfW+DgHmHInIkZpYMcv2I4SgyYZ5mC3FpJbJakCXpPtNCxbQUJxUI2r7X4SIeZJpJYUHc3pdQaFY3gvWufwxVjmTQaLZrR165X27k5yyWC7W6Ky2hXUlpQ+CNUvdGUC5QjSakFjLiTPqtOeD/JXsZWtcymAMfX1tm4hMbN+2+D3+UAC+VUobj+wdz6oB5gKbSERrT29TrIkg5/znRqyDrn+eSXTdiDcWS3v2r5pl8o9nrsa27Eh/IU/EAoRydX+Ni0DgHVphv472mV7TTY6J7S5dF3Glo0jxqDtjpdqZcdmKFduzUcLcKF5MCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz4VXkwdvvmHgg95bMgURCRvL7Vih5LUpk0Z/f9WKEYgkUx8jhK04+50eJ4xjBvBE/jiATqbu1V4PvBzHD0oM71Zg6o8iHXcfd+nWFSdP0hPEn51Vlm8eQvWvnpezrCgLtBbame8eQWRw8JWuror7qwMbgdtOyoNJGgDSLtBws68hNSAPdC2iuhH8fy44XeQ/+iEL1p0oBHu2bYUXqCrttMf8kRpF7qtzgwdorYu/bYkERlg+iPrVraOg16JzwZV67iv5Pdx8FI9ItxVPI4iaV3xhXxlC32CDsiJ2+vn3zRgPnUDx0daoj+p3GfAqPmVeFWW+L95xWzFxFpJcDeyrv","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":"3f562d4bb9024ff585c162402cf9c26f"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:23:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - 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.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL64sl6wVLgPxaPCIrS7h2Wqz0N1oYYDfW+DgHmHInIkZpYMcv2I4SgyYZ5mC3FpJbJakCXpPtNCxbQUJxUI2r7X4SIeZJpJYUHc3pdQaFY3gvWufwxVjmTQaLZrR165X27k5yyWC7W6Ky2hXUlpQ+CNUvdGUC5QjSakFjLiTPqtOeD/JXsZWtcymAMfX1tm4hMbN+2+D3+UAC+VUobj+wdz6oB5gKbSERrT29TrIkg5/znRqyDrn+eSXTdiDcWS3v2r5pl8o9nrsa27Eh/IU/EAoRydX+Ni0DgHVphv472mV7TTY6J7S5dF3Glo0jxqDtjpdqZcdmKFduzUcLcKF5MCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz4VXkwdvvmHgg95bMgURCRvL7Vih5LUpk0Z/f9WKEYgkUx8jhK04+50eJ4xjBvBE/jiATqbu1V4PvBzHD0oM71Zg6o8iHXcfd+nWFSdP0hPEn51Vlm8eQvWvnpezrCgLtBbame8eQWRw8JWuror7qwMbgdtOyoNJGgDSLtBws68hNSAPdC2iuhH8fy44XeQ/+iEL1p0oBHu2bYUXqCrttMf8kRpF7qtzgwdorYu/bYkERlg+iPrVraOg16JzwZV67iv5Pdx8FI9ItxVPI4iaV3xhXxlC32CDsiJ2+vn3zRgPnUDx0daoj+p3GfAqPmVeFWW+L95xWzFxFpJcDeyrv","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":"3f562d4bb9024ff585c162402cf9c26f"}' - headers: - cache-control: - - no-cache - content-length: - - '1322' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:23:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - 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.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL64sl6wVLgPxaPCIrS7h2Wqz0N1oYYDfW+DgHmHInIkZpYMcv2I4SgyYZ5mC3FpJbJakCXpPtNCxbQUJxUI2r7X4SIeZJpJYUHc3pdQaFY3gvWufwxVjmTQaLZrR165X27k5yyWC7W6Ky2hXUlpQ+CNUvdGUC5QjSakFjLiTPqtOeD/JXsZWtcymAMfX1tm4hMbN+2+D3+UAC+VUobj+wdz6oB5gKbSERrT29TrIkg5/znRqyDrn+eSXTdiDcWS3v2r5pl8o9nrsa27Eh/IU/EAoRydX+Ni0DgHVphv472mV7TTY6J7S5dF3Glo0jxqDtjpdqZcdmKFduzUcLcKF5MCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz4VXkwdvvmHgg95bMgURCRvL7Vih5LUpk0Z/f9WKEYgkUx8jhK04+50eJ4xjBvBE/jiATqbu1V4PvBzHD0oM71Zg6o8iHXcfd+nWFSdP0hPEn51Vlm8eQvWvnpezrCgLtBbame8eQWRw8JWuror7qwMbgdtOyoNJGgDSLtBws68hNSAPdC2iuhH8fy44XeQ/+iEL1p0oBHu2bYUXqCrttMf8kRpF7qtzgwdorYu/bYkERlg+iPrVraOg16JzwZV67iv5Pdx8FI9ItxVPI4iaV3xhXxlC32CDsiJ2+vn3zRgPnUDx0daoj+p3GfAqPmVeFWW+L95xWzFxFpJcDeyrv","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"3f562d4bb9024ff585c162402cf9c26f"}' - headers: - cache-control: - - no-cache - content-length: - - '1255' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - 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.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-keyvault/7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: GET - 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/3d81813f48fd46a6bea2a76742bc8d01","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01","x5t":"KFGp7HL6Y5VgM0mR0G4vwUdjWgs","cer":"MIIDQjCCAiqgAwIBAgIQKwjchthyTXqdLDykSEwOzTANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDEyMjE5MTM1N1oXDTIxMDEyMjE5MjM1N1owHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL64sl6wVLgPxaPCIrS7h2Wqz0N1oYYDfW+DgHmHInIkZpYMcv2I4SgyYZ5mC3FpJbJakCXpPtNCxbQUJxUI2r7X4SIeZJpJYUHc3pdQaFY3gvWufwxVjmTQaLZrR165X27k5yyWC7W6Ky2hXUlpQ+CNUvdGUC5QjSakFjLiTPqtOeD/JXsZWtcymAMfX1tm4hMbN+2+D3+UAC+VUobj+wdz6oB5gKbSERrT29TrIkg5/znRqyDrn+eSXTdiDcWS3v2r5pl8o9nrsa27Eh/IU/EAoRydX+Ni0DgHVphv472mV7TTY6J7S5dF3Glo0jxqDtjpdqZcdmKFduzUcLcKF5MCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFB3OfR1RxN+NgIZhQR5qmoPHxNSoMB0GA1UdDgQWBBQdzn0dUcTfjYCGYUEeapqDx8TUqDANBgkqhkiG9w0BAQsFAAOCAQEAREmrJSrycuU3srQ4lS36Q6wmCgJxbcorABMLVQs5J5I/KiqSSAppC/fyy+/cAVmCS3txXpuxnht+9TnvYx4GgQbQfiZ9JH91eym2maNuM8HjSxyfg+gqjfZccIG/lJYveoRPZ9sqv5hMgRHMGCIx+BTbkpcGoMZZqaeJ+srmISHXsns/MoxY2LiAAR5PeFanpSZEIS2ST/54g2SZ3hC4idgynsO8CqpIh7hxMqWkVEhfpmoS5DudZLoSZNdbgI9mqiTQvHFcI10emZ5PKetkfeKWbnOBWAju3+VL+qtJMkBD9IA2q4Y8JpkwnpI7i2WGqpdefvKjMOiL9j5+HfpmSQ==","attributes":{"enabled":true,"nbf":1579720437,"exp":1611343437,"created":1579721037,"updated":1579721037,"recoveryLevel":"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":1579721024,"updated":1579721024}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' - headers: - cache-control: - - no-cache - content-length: - - '2482' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-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":"2020-01-22T19:23:08Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:07 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-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":"2020-01-22T19:23:08Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:07 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 - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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/alsantamrg4/providers/Microsoft.KeyVault/vaults/alsantamrg4","name":"alsantamrg4","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"clusterName":"alsantamrg4","resourceType":"Service - Fabric"}},{"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/RG-Globalization-ARM-Keyvault/providers/Microsoft.KeyVault/vaults/GlobalARMKeyVaultnew","name":"GlobalARMKeyVaultnew","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10118012443/providers/Microsoft.KeyVault/vaults/rmsfe2etest10118012443","name":"rmsfe2etest10118012443","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10118155639/providers/Microsoft.KeyVault/vaults/rmsfe2etest10118155639","name":"rmsfe2etest10118155639","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10119031512/providers/Microsoft.KeyVault/vaults/rmsfe2etest10119031512","name":"rmsfe2etest10119031512","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10119151827/providers/Microsoft.KeyVault/vaults/rmsfe2etest10119151827","name":"rmsfe2etest10119151827","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10120041012/providers/Microsoft.KeyVault/vaults/rmsfe2etest10120041012","name":"rmsfe2etest10120041012","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10120154006/providers/Microsoft.KeyVault/vaults/rmsfe2etest10120154006","name":"rmsfe2etest10120154006","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10121033606/providers/Microsoft.KeyVault/vaults/rmsfe2etest10121033606","name":"rmsfe2etest10121033606","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10121172023/providers/Microsoft.KeyVault/vaults/rmsfe2etest10121172023","name":"rmsfe2etest10121172023","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest10122025828/providers/Microsoft.KeyVault/vaults/rmsfe2etest10122025828","name":"rmsfe2etest10122025828","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20118013537/providers/Microsoft.KeyVault/vaults/rmsfe2etest20118013537","name":"rmsfe2etest20118013537","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20118155645/providers/Microsoft.KeyVault/vaults/rmsfe2etest20118155645","name":"rmsfe2etest20118155645","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20119033204/providers/Microsoft.KeyVault/vaults/rmsfe2etest20119033204","name":"rmsfe2etest20119033204","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20119152227/providers/Microsoft.KeyVault/vaults/rmsfe2etest20119152227","name":"rmsfe2etest20119152227","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20120033244/providers/Microsoft.KeyVault/vaults/rmsfe2etest20120033244","name":"rmsfe2etest20120033244","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20120153004/providers/Microsoft.KeyVault/vaults/rmsfe2etest20120153004","name":"rmsfe2etest20120153004","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20121033606/providers/Microsoft.KeyVault/vaults/rmsfe2etest20121033606","name":"rmsfe2etest20121033606","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20121173702/providers/Microsoft.KeyVault/vaults/rmsfe2etest20121173702","name":"rmsfe2etest20121173702","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest20122025116/providers/Microsoft.KeyVault/vaults/rmsfe2etest20122025116","name":"rmsfe2etest20122025116","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30121034819/providers/Microsoft.KeyVault/vaults/rmsfe2etest30121034819","name":"rmsfe2etest30121034819","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30121174251/providers/Microsoft.KeyVault/vaults/rmsfe2etest30121174251","name":"rmsfe2etest30121174251","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40118012950/providers/Microsoft.KeyVault/vaults/rmsfe2etest40118012950","name":"rmsfe2etest40118012950","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40118174002/providers/Microsoft.KeyVault/vaults/rmsfe2etest40118174002","name":"rmsfe2etest40118174002","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40119033200/providers/Microsoft.KeyVault/vaults/rmsfe2etest40119033200","name":"rmsfe2etest40119033200","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40119152610/providers/Microsoft.KeyVault/vaults/rmsfe2etest40119152610","name":"rmsfe2etest40119152610","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40120033750/providers/Microsoft.KeyVault/vaults/rmsfe2etest40120033750","name":"rmsfe2etest40120033750","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40120153502/providers/Microsoft.KeyVault/vaults/rmsfe2etest40120153502","name":"rmsfe2etest40120153502","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40121034215/providers/Microsoft.KeyVault/vaults/rmsfe2etest40121034215","name":"rmsfe2etest40121034215","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40121174251/providers/Microsoft.KeyVault/vaults/rmsfe2etest40121174251","name":"rmsfe2etest40121174251","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40122025213/providers/Microsoft.KeyVault/vaults/rmsfe2etest40122025213","name":"rmsfe2etest40122025213","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50118012947/providers/Microsoft.KeyVault/vaults/rmsfe2etest50118012947","name":"rmsfe2etest50118012947","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50118194141/providers/Microsoft.KeyVault/vaults/rmsfe2etest50118194141","name":"rmsfe2etest50118194141","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50119031514/providers/Microsoft.KeyVault/vaults/rmsfe2etest50119031514","name":"rmsfe2etest50119031514","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50119152624/providers/Microsoft.KeyVault/vaults/rmsfe2etest50119152624","name":"rmsfe2etest50119152624","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50120033244/providers/Microsoft.KeyVault/vaults/rmsfe2etest50120033244","name":"rmsfe2etest50120033244","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50120153449/providers/Microsoft.KeyVault/vaults/rmsfe2etest50120153449","name":"rmsfe2etest50120153449","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50121034819/providers/Microsoft.KeyVault/vaults/rmsfe2etest50121034819","name":"rmsfe2etest50121034819","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50121173712/providers/Microsoft.KeyVault/vaults/rmsfe2etest50121173712","name":"rmsfe2etest50121173712","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest50122030951/providers/Microsoft.KeyVault/vaults/rmsfe2etest50122030951","name":"rmsfe2etest50122030951","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60118012949/providers/Microsoft.KeyVault/vaults/rmsfe2etest60118012949","name":"rmsfe2etest60118012949","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60118194140/providers/Microsoft.KeyVault/vaults/rmsfe2etest60118194140","name":"rmsfe2etest60118194140","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60119032205/providers/Microsoft.KeyVault/vaults/rmsfe2etest60119032205","name":"rmsfe2etest60119032205","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60119152227/providers/Microsoft.KeyVault/vaults/rmsfe2etest60119152227","name":"rmsfe2etest60119152227","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60120033750/providers/Microsoft.KeyVault/vaults/rmsfe2etest60120033750","name":"rmsfe2etest60120033750","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60120153007/providers/Microsoft.KeyVault/vaults/rmsfe2etest60120153007","name":"rmsfe2etest60120153007","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60121033611/providers/Microsoft.KeyVault/vaults/rmsfe2etest60121033611","name":"rmsfe2etest60121033611","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60121173714/providers/Microsoft.KeyVault/vaults/rmsfe2etest60121173714","name":"rmsfe2etest60121173714","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest60122031550/providers/Microsoft.KeyVault/vaults/rmsfe2etest60122031550","name":"rmsfe2etest60122031550","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70118021914/providers/Microsoft.KeyVault/vaults/rmsfe2etest70118021914","name":"rmsfe2etest70118021914","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70118163030/providers/Microsoft.KeyVault/vaults/rmsfe2etest70118163030","name":"rmsfe2etest70118163030","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70119032205/providers/Microsoft.KeyVault/vaults/rmsfe2etest70119032205","name":"rmsfe2etest70119032205","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70119152610/providers/Microsoft.KeyVault/vaults/rmsfe2etest70119152610","name":"rmsfe2etest70119152610","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70120033751/providers/Microsoft.KeyVault/vaults/rmsfe2etest70120033751","name":"rmsfe2etest70120033751","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70120153502/providers/Microsoft.KeyVault/vaults/rmsfe2etest70120153502","name":"rmsfe2etest70120153502","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70121034831/providers/Microsoft.KeyVault/vaults/rmsfe2etest70121034831","name":"rmsfe2etest70121034831","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70121171453/providers/Microsoft.KeyVault/vaults/rmsfe2etest70121171453","name":"rmsfe2etest70121171453","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest70122031547/providers/Microsoft.KeyVault/vaults/rmsfe2etest70122031547","name":"rmsfe2etest70122031547","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}}]}' - headers: - cache-control: - - no-cache - content-length: - - '15599' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:08 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 - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-09-01 - 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":{},"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","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '1137' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:08 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.1.0.269 - x-powered-by: - - ASP.NET - 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.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - 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/3d81813f48fd46a6bea2a76742bc8d01?api-version=7.0 - response: - body: - string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAgKGJPRkyd6uwICB9AEggTY4qjK6Iy+NiS0u+XMWWU+YIIh3yYQ5ZIz3ABJPP7Y1zg6tLSFIcSSfPAfGiHtarZLuBHbxjDuDc7cZB1bJvZCodPe2B2dAo3B1L0Eh0fpiAAVykR8YWkynDHqNtNWvGXQhXDBJIOy4PQsH8veolYLeOOM/gSK0ryVjr2ozNlfX1BI8FRQFI0BwrXXg91DPZJl1QYv/40YPP3OlZJIUqePCgfxWHt5uXBhq/cpjJ7/tBykm+eubM26AE7h9/h12CyyaBV37tSi2mlxWGK/FgpFTfbzwiXUDkNaa3X8Pzy3BJlgDQU4RuI/b5l7OvxhXOr9dMzIw82yfDgkg0EDOVUBl8OLuY8S8iz59YHVPCIKFhEQiCy6V/GMuqoMXFQzZ52tUQ3ykMdgWIchcRxyuUpUjwgZ1axRcbzp0LpzzD7tlVjJtgSsJ5SCaTbIJbMzcZKsDdZBGIUGoCypynGfYtqmfNDCJ6XikOhaeaAPWKN6UC07oj/2KSBSbAmKlv/U9YOpys1YzkRTTtHyAy0F0B4EtfYidhb4hOo5Myz3fumFgc2Ly0MqTDzTUGXRXyYcmdIeNXWKs4v2BqoWIIg0VJwxg1tNPEOa+wcI/1dO7DRaz7ttECZOMooW7qD2Mm8KauJ3u3l21s1ktnskzpw4Ume5mz1exVxs3fnDZGyAuthdN4mK8RacsfQgz4STRx6yrYNsvFaWTutptEAAZsH0oEoe8wridaO4uw9df/xVutFEG191q2f78fHFZI9RAqOrL2cRt8vPLCCjrG5S5xSVamqoKdbMZiqoDwRXEhclPeAOPWwjohU09nbJtbcuan2yy/IgliX32bJtYsWu6L9d9AYyX7yjtzqflfHzVfVsJb4obuCEC8wJKY6yRBAxGtYKKT7pegMvUUoaXQn71KjLKOg22O9+NWGiSK/mpl+ZgF340B+rTNNnParq+5k7LfsxRoBiEsNfFu/gPbbO32wqdYHGcUTWsZwi+E4FwdTh89D+Ol6IfxNHHuiqinEIy9dr6GJIvRE43eRc7CF9RwnoDX7PPFln9qCFTvZImwdJe/ECa4uFifyXaaDand7+NmLWn1+xd3ILB0MYk8rvyQ90fuPYEzpMso6QkJSrS/bgwfGkbFoargbrQPN2XbVlBbF+D6soTkxV4t+xDnj++NrldqAXT8c7GmTjOYK4nuKfH4d27kKmGdVSW1wXw5m1wOOOdFY8MqHrW0DbPPrOMcLIahFqwv8ZEPSTfr4icA9Deb9dR+3IAJW1Z97ORDdrGxRbwIdtRGkVO3a8jy/j7HV81JStK9BGM4m3EJvPiZDNnzHhDY+6DhrWv3H8PrBV6O5wITqrazOrXTsHiyXXbC79Xn3nATvwkfGa1Uqp1UXOq2aujATDrvUI8BrScyaBUmiaYZ2Vu9MpVNgg45aOSgB59lU+FjECpjnCAN0flkKfSLFrRoO/ilZ4KVKnbQ2FfsfI307TgyRjQr3PkV9IM+IXNsLnhlHBrsxf46Bc09qCddLXqVefADiwKnCAdQnEUkM/7NXdxI9bMkhhihHExYLd666fIej1mYtve1cs2leE9v0B2YSTF0YdfeRUoJqa1Pn+lvW7SDPnF7ZmD/E6f5e16a2gbmi4htZto6l2DZWsr5G2plk3uJ5wV9SeujGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADUAYgA1ADUANwA1ADAANwAtAGYAMgAzADcALQA0ADQANgAzAC0AOABjADUANAAtAGQANQBiAGMAYQA4AGIAZgBkADMAZQBjMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAggQ3PQV/Fo3QICB9CAggOQBZk7SWadrTD++DsMGYGFkIfPJKWtVleXErAGR783H2g0dhUpyC142oZcwmz8LNAo7khq+gYzjoFc+q/zNMqENG4NJhsQK4mu5h6ns9R/fCoVqrcTgo4renpSjsDC9wiMaEmN0N3gT7gi4yGBmzkeFrB7pmE53QykAaloasCzs3pm6GUNAe+lgPhBokRJ/pw8X/zlkKOjCiZ3ZT9gSjZhbJFRhvI3AoaZE4KFzdU2M5h/aq7KqZJoaKFmPJQAdE+b+frt0y20IIeuzCBIO9XaA4fg5Hj1/G3l2tHqbVcjgKa1pHnZMp6wF/TXqsJHHzwprPPxJe8rGl3E98cYl5dgASSrApqG6rNI3nvm/bLCKbED83J6g1gsPx9OTl9sIMqEc/wP1Zngwq2lRWjy5zi0ZiHP6FYVnKVp1ZSb1cdNLAI26pNUKsDB/fRX8vhtErYtksVBgfoOopenru1OlOLh1H2rCebFnqXuRndn8AonQGTEU7AoNRfphuolDS9b4zsyc3pr00pDgIOhLFy0ugHN3OT1BkvgjYKm6MyVuWooqbiNw+0EVDVXRJIYL3T8/tTqhCZHw0TgpUbNlEYi5Zlr2UCULXtVpbIiMD2WvxKMBWn01Cu4pc+VQQ/WpfBkwtGUFKWO/tE8oqEtIWMmDbZF+N0nD1FIs65+XaSCYJ1Icg51vcbFUnNnHNbPFuec2vXjfTaQGhSCdDPAzOaGRHgS6IqBH7U8QFTITLNh9XCyJz/bnQ4PQL7vaK+154YD/pGIoy80qykQVr+FYKLhYhdhilkAOsNk0HkZnr3v91opIZfnmVLe8cqdVzA8+Tu797t4xwe5uSeYJ4rqhEl2pKW2xEHMTvRggEqFWeCiaDpt+c0n7D59xGrNpDvl37aGbrFi8nvdPq9kcACOLiLxhwiSAKOPcyUoa+ODKQ55lMpHZHCqD1cfQ4+m/HKWmzrOmd+HAJNOfQGY0GvDicLRZRKl1CzDo20kWOMkFCAA00LqZTIYbvZl5zALW9BAM8ZC+ZXuNzBSXNLuc2Z3IwgSVb300ayB3gvFFEIYRQ8GJq2IkK6m8rDPo5S2tVqBZDgtmkRKnCXmvX0tiH99IuY+cg8kI3NBH+5ncxTCHyCxNnVSXvr1hsJRf/zcmuNDh21IjZAwYu/nbGqCrVmoUhvgXe8LIMo0B7AeGzsc3plp/x9YF8kanbQBIad0G3N6N4dDIxkGMDcwHzAHBgUrDgMCGgQUur2Dd1JhUEZZgSJARi38FcOsXlYEFASlOjGQceqatXe5EUZ3DI0V79yi","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01","managed":true,"attributes":{"enabled":true,"nbf":1579720437,"exp":1611343437,"created":1579721037,"updated":1579721037,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01"}' - headers: - cache-control: - - no-cache - content-length: - - '3960' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000;includeSubDomains - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-ms-keyvault-network-info: - - addr=131.107.159.235;act_addr_fam=InterNetwork; - x-ms-keyvault-region: - - westus - x-ms-keyvault-service-version: - - 1.1.0.891 - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: 'b''{"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": "Pass@000005"}, "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": - "2851A9EC72FA639560334991D06E2FC147635A0B"}, "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/3d81813f48fd46a6bea2a76742bc8d01"}, - "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: - - '18991' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001221124","name":"AzurePSDeployment-202001221124","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","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":"2851A9EC72FA639560334991D06E2FC147635A0B"},"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/3d81813f48fd46a6bea2a76742bc8d01"},"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":"2020-01-22T19:24:09.4039594Z","duration":"PT0S","correlationId":"660fde47-6913-4d91-9553-ce11b558092f","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/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/rnq6es7bsjl5e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"rnq6es7bsjl5e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2","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/rnq6es7bsjl5e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"rnq6es7bsjl5e3","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/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2","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/sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/rnq6es7bsjl5e3"},{"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: - - '8709' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:10 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: 'b''{"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": "Pass@000005"}, "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": - "2851A9EC72FA639560334991D06E2FC147635A0B"}, "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/3d81813f48fd46a6bea2a76742bc8d01"}, - "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: - - '18991' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001221124","name":"AzurePSDeployment-202001221124","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","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":"2851A9EC72FA639560334991D06E2FC147635A0B"},"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/3d81813f48fd46a6bea2a76742bc8d01"},"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":"2020-01-22T19:24:11.6873165Z","duration":"PT0.9496974S","correlationId":"423def05-b224-42fc-ac54-74c9ace1ade2","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/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/rnq6es7bsjl5e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"rnq6es7bsjl5e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2","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/rnq6es7bsjl5e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"rnq6es7bsjl5e3","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/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2","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-202001221124/operationStatuses/08586218858347400602?api-version=2019-07-01 - cache-control: - - no-cache - content-length: - - '7191' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:11 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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:24:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:25:11 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:25:41 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:26:11 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:26:41 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:27:12 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:27:41 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:28:11 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:28:41 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:29:12 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:29:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:30:11 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:30:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:31:12 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 --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586218858347400602?api-version=2019-07-01 - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:31:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001221124","name":"AzurePSDeployment-202001221124","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","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":"2851A9EC72FA639560334991D06E2FC147635A0B"},"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/3d81813f48fd46a6bea2a76742bc8d01"},"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":"2020-01-22T19:31:35.1335313Z","duration":"PT7M24.3959122S","correlationId":"423def05-b224-42fc-ac54-74c9ace1ade2","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/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/rnq6es7bsjl5e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"rnq6es7bsjl5e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2","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/rnq6es7bsjl5e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"rnq6es7bsjl5e3","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/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsrnq6es7bsjl5e2","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":"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5","clusterCodeVersion":"6.5.676.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5","certificate":{"thumbprint":"2851A9EC72FA639560334991D06E2FC147635A0B","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":"sflogsrnq6es7bsjl5e2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/","queueEndpoint":"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/","tableEndpoint":"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"6.5.676.9590","supportExpiryUtc":"2020-05-01T00:00:00","environment":"Windows"},{"codeVersion":"7.0.457.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/rnq6es7bsjl5e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2"}]}}' - headers: - cache-control: - - no-cache - content-length: - - '10394' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:31:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster create - Connection: - - keep-alive - ParameterSetName: - - -g -c -l --secret-identifier --vm-password --cluster-size - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:31:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:32:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:33:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:34:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:35:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:36:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2736' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:37:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:38:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:39:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:40:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:41:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:42:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:43:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 show - Connection: - - keep-alive - ParameterSetName: - - -g -c - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:44:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:45:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:45:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19: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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:45:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2742' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:45:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2732' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:45: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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": - \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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: - - '2732' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:45: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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2019-07-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":"2020-01-22T19:23:08Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:08 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2019-09-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/\\\"b9607e3d-b872-4d41-9acc-04bd174a843e\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\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\": \"ba19cf3c-2ed8-4505-9476-73ba835a64e5\",\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/\\\"b9607e3d-b872-4d41-9acc-04bd174a843e\\\"\",\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/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\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 \"enableVmProtection\": false\r\n }\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '2940' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19: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 - x-ms-arm-service-request-id: - - 94a321ac-e26a-445c-8a46-4c4c2da0a8f4 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets?api-version=2019-09-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/\\\"b9607e3d-b872-4d41-9acc-04bd174a843e\\\"\",\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/cleanupservice/providers/Microsoft.Network/networkSecurityGroups/rg-cleanupservice-nsg1\"\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: - - '1869' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45: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: - - 4ebfe525-a720-4bb7-9ade-afdb2ef9a3a3 - status: - code: 200 - message: OK -- request: - body: '{"properties": {"addressPrefix": "10.0.1.0/24"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '48' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-09-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/\\\"ff8ce585-22b3-4e60-a64d-64e89677e1e8\\\"\",\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/westus/operations/9451a108-ede2-434e-9deb-c0d89cfaf37a?api-version=2019-09-01 - cache-control: - - no-cache - content-length: - - '586' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:10 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: - - 9d9c4e4d-95de-4668-99e4-bb706849dff5 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9451a108-ede2-434e-9deb-c0d89cfaf37a?api-version=2019-09-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, 22 Jan 2020 19:45:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 561080c4-9164-4a27-ac0a-d109801fa524 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - 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=2019-09-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/\\\"60dd2174-c9ba-4c19-aacb-1b9b9b7d7fd9\\\"\",\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: - - '587' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:15 GMT - etag: - - W/"60dd2174-c9ba-4c19-aacb-1b9b9b7d7fd9" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - 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: - - 64d85d5b-0323-4713-b7b2-05827ef3f391 - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "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: - - '146' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-09-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/\\\"81acd803-516a-4a9a-a1fd-5b266054a824\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"feb010b9-46d6-4979-822c-0344d9d21bfb\",\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.westus.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 }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a45ee80b-4aca-4d05-82b9-e35f87ca3d6b?api-version=2019-09-01 - cache-control: - - no-cache - content-length: - - '878' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:17 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: - - c830a76a-c6f0-4266-ba3c-18d2069f5300 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a45ee80b-4aca-4d05-82b9-e35f87ca3d6b?api-version=2019-09-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, 22 Jan 2020 19:45:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b276d7dc-0fdb-4f1c-82c5-8820e06af00d - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - 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=2019-09-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/\\\"93bfeaa3-4d82-4775-b274-52ef1daee138\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"feb010b9-46d6-4979-822c-0344d9d21bfb\",\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.westus.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 }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '879' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:19 GMT - etag: - - W/"93bfeaa3-4d82-4775-b274-52ef1daee138" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - 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: - - 5ff92f3d-ca9b-46a8-9c85-5ae36aaf79b7 - status: - code: 200 - message: OK -- request: - body: 'b''{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1", - "location": "westus", "properties": {"frontendIPConfigurations": [{"properties": - {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}, - "name": "LoadBalancerIPConfig"}], "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], - "loadBalancingRules": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/probes/FabricGatewayProbe"}, - "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": - 5, "enableFloatingIP": false}, "name": "LBRule"}, {"properties": {"frontendIPConfiguration": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool"}, - "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/probes/FabricHttpGatewayProbe"}, - "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": - 5, "enableFloatingIP": false}, "name": "LBHttpRule"}], "probes": [{"properties": - {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": - 2}, "name": "FabricGatewayProbe"}, {"properties": {"protocol": "tcp", "port": - 19080, "intervalInSeconds": 5, "numberOfProbes": 2}, "name": "FabricHttpGatewayProbe"}], - "inboundNatPools": [{"properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/frontendIPConfigurations/LoadBalancerIPConfig"}, - "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, - "backendPort": 3389}, "name": "LoadBalancerBEAddressNatPool"}]}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '3402' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-ufntz62xf1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cac583c3-2cf0-465f-89e8-1910e5185288\",\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-ufntz62xf1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/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-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/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-ufntz62xf1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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-ufntz62xf1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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-ufntz62xf1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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 }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9500f3d3-404d-4464-ba74-d05657b381b6?api-version=2019-09-01 - cache-control: - - no-cache - content-length: - - '10668' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - cc125662-d1a6-4df0-911f-dbeef3c13f7b - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 201 - message: Created -- 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9500f3d3-404d-4464-ba74-d05657b381b6?api-version=2019-09-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, 22 Jan 2020 19: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-arm-service-request-id: - - 632f7f7d-742e-4a15-b0ac-0a04770662e8 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-ufntz62xf1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cac583c3-2cf0-465f-89e8-1910e5185288\",\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-ufntz62xf1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/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-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/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-ufntz62xf1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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-ufntz62xf1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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-ufntz62xf1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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 }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '10668' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:53 GMT - etag: - - W/"788d3d13-a6f9-49a5-bcbe-9155382b8c6f" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - 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: - - 299ccbc0-a2b4-444c-b07b-cfc004215af5 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1?api-version=2019-09-01 - response: - body: - string: "{\r\n \"name\": \"LB-sfrp-cli-ufntz62xf1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\r\n \"type\": - \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cac583c3-2cf0-465f-89e8-1910e5185288\",\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-ufntz62xf1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/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-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n - \ }\r\n ],\r\n \"privateIPAddressVersion\": \"IPv4\"\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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/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-ufntz62xf1/loadBalancingRules/LBRule\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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-ufntz62xf1/loadBalancingRules/LBHttpRule\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"\r\n - \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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-ufntz62xf1/probes/FabricGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/probes/FabricHttpGatewayProbe\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n - \ \"etag\": \"W/\\\"788d3d13-a6f9-49a5-bcbe-9155382b8c6f\\\"\",\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-ufntz62xf1/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 }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '10668' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:54 GMT - etag: - - W/"788d3d13-a6f9-49a5-bcbe-9155382b8c6f" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - 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: - - 66de449c-fa59-438b-94ef-9817ca012aa9 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2019-07-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 },\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 },\r\n - \ \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01\",\r\n - \ \"certificateStore\": \"My\"\r\n }\r\n - \ ]\r\n }\r\n ]\r\n },\r\n - \ \"storageProfile\": {\r\n \"osDisk\": {\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://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"2851A9EC72FA639560334991D06E2FC147635A0B\",\"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\":\"rnq6es7bsjl5e3\"}\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\": \"9800e7df-fcad-4131-b988-1868b0daf3ba\"\r\n - \ }\r\n }\r\n ]\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '6002' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;889 - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i1?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:45:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8a98c3a-fe49-4145-8efd-741a63f219a9?monitor=true&api-version=2019-04-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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/b8a98c3a-fe49-4145-8efd-741a63f219a9?monitor=true&api-version=2019-04-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/sfrpcliufntz62xfver5i1","name":"sfrpcliufntz62xfver5i1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:45:57.5260016Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:45:57.5260016Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:45:57.4478308Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i1.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i1.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i1.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:15 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i1?api-version=2019-04-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/sfrpcliufntz62xfver5i1","name":"sfrpcliufntz62xfver5i1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:45:57.5260016Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:45:57.5260016Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:45:57.4478308Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i1.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i1.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i1.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:17 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i1/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:18 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-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i2?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:46:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7ccbec4e-a2c3-46a3-be72-90ec4b9e89e8?monitor=true&api-version=2019-04-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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/7ccbec4e-a2c3-46a3-be72-90ec4b9e89e8?monitor=true&api-version=2019-04-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/sfrpcliufntz62xfver5i2","name":"sfrpcliufntz62xfver5i2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:19.6433716Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:19.6433716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:46:19.5652484Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i2.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i2.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i2.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:37 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i2?api-version=2019-04-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/sfrpcliufntz62xfver5i2","name":"sfrpcliufntz62xfver5i2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:19.6433716Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:19.6433716Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:46:19.5652484Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i2.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i2.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i2.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:39 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i2/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:39 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-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i3?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:46:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d22700ba-49ce-4176-b8ca-edb97af74bdd?monitor=true&api-version=2019-04-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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/d22700ba-49ce-4176-b8ca-edb97af74bdd?monitor=true&api-version=2019-04-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/sfrpcliufntz62xfver5i3","name":"sfrpcliufntz62xfver5i3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:41.4560154Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:41.4560154Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:46:41.3935180Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i3.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i3.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i3.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:59 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i3?api-version=2019-04-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/sfrpcliufntz62xfver5i3","name":"sfrpcliufntz62xfver5i3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:41.4560154Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:46:41.4560154Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:46:41.3935180Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i3.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i3.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i3.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:59 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i3/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:46:59 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-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i4?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:47:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/383cf7fb-f4da-417e-97d1-c81a735dcbce?monitor=true&api-version=2019-04-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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/383cf7fb-f4da-417e-97d1-c81a735dcbce?monitor=true&api-version=2019-04-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/sfrpcliufntz62xfver5i4","name":"sfrpcliufntz62xfver5i4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:02.1830479Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:02.1830479Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:47:02.1361705Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i4.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i4.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i4.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:20 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i4?api-version=2019-04-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/sfrpcliufntz62xfver5i4","name":"sfrpcliufntz62xfver5i4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:02.1830479Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:02.1830479Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:47:02.1361705Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i4.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i4.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i4.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:21 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i4/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:22 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-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "westus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - sf cluster node-type add - Connection: - - keep-alive - Content-Length: - - '74' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i5?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:47:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/0dd8311d-dc5a-4f97-b324-cb519e3f5599?monitor=true&api-version=2019-04-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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/0dd8311d-dc5a-4f97-b324-cb519e3f5599?monitor=true&api-version=2019-04-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/sfrpcliufntz62xfver5i5","name":"sfrpcliufntz62xfver5i5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:24.0894489Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:24.0894489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:47:24.0269501Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i5.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i5.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i5.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:42 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i5?api-version=2019-04-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/sfrpcliufntz62xfver5i5","name":"sfrpcliufntz62xfver5i5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:24.0894489Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-22T19:47:24.0894489Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-22T19:47:24.0269501Z","primaryEndpoints":{"blob":"https://sfrpcliufntz62xfver5i5.blob.core.windows.net/","queue":"https://sfrpcliufntz62xfver5i5.queue.core.windows.net/","table":"https://sfrpcliufntz62xfver5i5.table.core.windows.net/","file":"https://sfrpcliufntz62xfver5i5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1156' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:43 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcliufntz62xfver5i5/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:43 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-writes: - - '1199' - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/rnq6es7bsjl5e3/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:45 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-writes: - - '1199' - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-storage/5.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsrnq6es7bsjl5e2/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:47:46 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-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: 'b''{"location": "westus", "sku": {"name": "Standard_D15_v2", "tier": "Standard", - "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": - {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "adminPassword": - "Pass@000005", "secrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01", - "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": - "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", - "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", - "createOption": "FromImage", "vhdContainers": ["https://sfrpcliufntz62xfver5i1.blob.core.windows.net/vhd", - "https://sfrpcliufntz62xfver5i2.blob.core.windows.net/vhd", "https://sfrpcliufntz62xfver5i3.blob.core.windows.net/vhd", - "https://sfrpcliufntz62xfver5i4.blob.core.windows.net/vhd", "https://sfrpcliufntz62xfver5i5.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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool"}], - "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, - "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", - "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", - "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": - "https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5", - "nodeTypeRef": "nt2", "dataPath": "D:\\\\\\\\SvcFab", "durabilityLevel": "Gold", - "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "2851A9EC72FA639560334991D06E2FC147635A0B", - "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": "rnq6es7bsjl5e3"}, "protectedSettings": {"storageAccountName": - "rnq6es7bsjl5e3", "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: - - '4417' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-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\": - \"westus\",\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 },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01\",\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://sfrpcliufntz62xfver5i1.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i2.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i3.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i4.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i5.blob.core.windows.net/vhd\"\r\n - \ ],\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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"2851A9EC72FA639560334991D06E2FC147635A0B\",\"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\":\"rnq6es7bsjl5e3\"}\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\": \"Creating\",\r\n \"overprovision\": - false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"406c0c13-d7d1-4c98-b7d6-cba867dc197a\"\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - cache-control: - - no-cache - content-length: - - '5837' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:47:48 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;59,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1195,Microsoft.Compute/VmssQueuedVMOperations;4795 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-ms-request-charge: - - '5' - status: - code: 201 - message: Created -- 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:47:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29935 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:49: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;14987,Microsoft.Compute/GetOperation30Min;29926 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19: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;14985,Microsoft.Compute/GetOperation30Min;29938 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19: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;14983,Microsoft.Compute/GetOperation30Min;29934 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19: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;14983,Microsoft.Compute/GetOperation30Min;29931 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:51: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;14983,Microsoft.Compute/GetOperation30Min;29928 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:52: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;14981,Microsoft.Compute/GetOperation30Min;29924 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:52: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;14981,Microsoft.Compute/GetOperation30Min;29920 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"status\": - \"InProgress\",\r\n \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:53: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;14982,Microsoft.Compute/GetOperation30Min;29918 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dede5f46-47df-46f0-b8d6-881634a16c8f?api-version=2019-07-01 - response: - body: - string: "{\r\n \"startTime\": \"2020-01-22T19:47:47.9139241+00:00\",\r\n \"endTime\": - \"2020-01-22T19:53:29.8190346+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"dede5f46-47df-46f0-b8d6-881634a16c8f\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '184' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:53: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;14982,Microsoft.Compute/GetOperation30Min;29914 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2019-07-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\": - \"westus\",\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 },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002\"\r\n - \ },\r\n \"vaultCertificates\": [\r\n {\r\n - \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01\",\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://sfrpcliufntz62xfver5i1.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i2.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i3.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i4.blob.core.windows.net/vhd\",\r\n - \ \"https://sfrpcliufntz62xfver5i5.blob.core.windows.net/vhd\"\r\n - \ ],\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-ufntz62xf1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ufntz62xf1/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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"2851A9EC72FA639560334991D06E2FC147635A0B\",\"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\":\"rnq6es7bsjl5e3\"}\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\": - \"406c0c13-d7d1-4c98-b7d6-cba867dc197a\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '5838' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 22 Jan 2020 19:53: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/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2583 - 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": - "Gold", "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: - - '588' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level - --vm-sku - User-Agent: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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 \"etag\": \"W/\\\"637153179368236820\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\": - \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n - \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n - \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n - \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\": - \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n - \ {\r\n \"codeVersion\": \"7.0.457.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/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - cache-control: - - no-cache - content-length: - - '2661' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:53:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-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: - - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\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: - - Wed, 22 Jan 2020 19:54: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\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: - - Wed, 22 Jan 2020 19:55: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"Created\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\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: - - Wed, 22 Jan 2020 19:55: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"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\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3309' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:56: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"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\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3309' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:56: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3394' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:57: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3394' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:57: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"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\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3305' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:58: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"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\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3305' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:58: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"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\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3305' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:59: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"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\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3305' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 19:59: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3311' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:00: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3311' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:00: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3396' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:01: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_1\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3396' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:01: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3307' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:02: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3307' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:02: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3307' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:03: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3307' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:03:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3285' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:04: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3285' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:04:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3417' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:05: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 - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3417' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:05:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:09:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3370' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:06:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:09:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3370' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:06:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3283' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:07:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3283' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:07:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3283' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:08:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{}},\\\"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\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"6.5.676.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-01-22T19:55:10.1633854Z\\\"}\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n - \ \"percentComplete\": 0.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '3283' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:08:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4?api-version=2019-03-01 - response: - body: - string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n - \ \"name\": \"5b7fb308-ed0b-4416-b555-778f0ab6f7f4\",\r\n \"status\": \"Succeeded\",\r\n - \ \"startTime\": \"2020-01-22T19:53:46.1878573Z\",\r\n \"endTime\": \"2020-01-22T20:09:14.8588131Z\",\r\n - \ \"percentComplete\": 100.0\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '366' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:09:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - 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=2019-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 \"etag\": \"W/\\\"637153179368236820\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": - \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"Gold\"\r\n - \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n - \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n - \ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": - \"7.0.457.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: - - '3073' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:09:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - 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: - - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 - azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78 - accept-language: - - en-US - 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=2019-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 \"etag\": \"W/\\\"637153179368236820\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": - \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n \"clusterCodeVersion\": \"6.5.676.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/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\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\": \"Gold\"\r\n - \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": - \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": - \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": - \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n \"queueEndpoint\": - \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n \"tableEndpoint\": - \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n - \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n - \ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": - \"7.0.457.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: - - '3073' - content-type: - - application/json - date: - - Wed, 22 Jan 2020 20:09: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 -version: 1 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 index 82c37238762..d05010f6bf2 100644 --- 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 @@ -154,11 +154,10 @@ interactions: accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + uri: https://graph.microsoft.com/v1.0/me 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":"d44a2991-98c6-47c3-b59b-2b30d72cfcc2","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2021-04-07T05:58:20Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Jingsong - Zhang (WICRESOFT NORTH AMERICA LTD)","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"v-jingszhang@microsoft.com","mailNickname":"v-jingszhang_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["v-jingszhang@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:v-jingszhang@microsoft.com"],"refreshTokensValidFromDateTime":"2021-04-07T05:58:20Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/d44a2991-98c6-47c3-b59b-2b30d72cfcc2/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"v-jingszhang_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2021-04-07T05:59:39Z","userType":"Guest"}' + string: '{"id":"d44a2991-98c6-47c3-b59b-2b30d72cfcc2"}' headers: access-control-allow-origin: - '*'