diff --git a/azure-cli.pyproj b/azure-cli.pyproj
index 7cbfecff8a3..d32a0c24106 100644
--- a/azure-cli.pyproj
+++ b/azure-cli.pyproj
@@ -654,10 +654,15 @@
-
+
+
+
+
+
+
@@ -1065,8 +1070,10 @@
+
+
@@ -1337,6 +1344,8 @@
+
+
diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj
index 07ac54ed0b2..7965aa145c8 100644
--- a/azure-cli2017.pyproj
+++ b/azure-cli2017.pyproj
@@ -842,10 +842,15 @@
-
+
+
+
+
+
+
@@ -1167,9 +1172,13 @@
+
+
+
+
@@ -1421,6 +1430,8 @@
+
+
diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst
index e035ec11a28..5695b5af2d8 100644
--- a/src/azure-cli/HISTORY.rst
+++ b/src/azure-cli/HISTORY.rst
@@ -49,6 +49,31 @@ Release History
* `az storage remove`: Change `--inlcude` and `--exclude` parameters to `--include-path`, `--include-pattern`, `--exclude-path` and`--exclude-pattern` parameters
* `az storage sync`: Add `--include-pattern`, `--exclude-path` and`--exclude-pattern` parameters
+**ServiceFabric**
+
+* Adding new commands to manage appliaction and services.
+ - sf application-type
+ - list
+ - delete
+ - show
+ - create
+ - sf application-type version
+ - list
+ - delete
+ - show
+ - create
+ - sf application
+ - list
+ - delete
+ - show
+ - create
+ - update
+ - sf service
+ - list
+ - delete
+ - show
+ - create
+
2.0.80
++++++
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_arm_deployment_utils.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_arm_deployment_utils.py
new file mode 100644
index 00000000000..23133911eba
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_arm_deployment_utils.py
@@ -0,0 +1,64 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+import datetime
+
+from azure.cli.core.util import CLIError, sdk_no_wait
+from azure.cli.core.commands import LongRunningOperation
+from azure.cli.core.profiles import ResourceType
+from knack.log import get_logger
+from ._client_factory import (resource_client_factory)
+
+logger = get_logger(__name__)
+
+
+def validate_and_deploy_arm_template(cmd, resource_group_name, template, parameters):
+ suffix = datetime.datetime.now().strftime("%Y%m%d%H%M")
+ deployment_name = 'AzurePSDeployment-' + suffix
+
+ logger.info("Validating the deployment")
+ validate_result = _deploy_arm_template_core(
+ cmd, resource_group_name, template, parameters, deployment_name, 'incremental', True)
+ if validate_result.error is not None:
+ errors_detailed = _build_detailed_error(validate_result.error, [])
+ errors_detailed.insert(0, "Error validating template. See below for more information.")
+ raise CLIError('\n'.join(errors_detailed))
+ logger.info("Deployment is valid, and begin to deploy")
+ _deploy_arm_template_core(cmd, resource_group_name, template,
+ parameters, deployment_name, 'incremental', False)
+
+
+def _deploy_arm_template_core(cmd,
+ resource_group_name,
+ template,
+ parameters,
+ deployment_name=None,
+ mode='incremental',
+ validate_only=False,
+ no_wait=False):
+ DeploymentProperties = cmd.get_models('DeploymentProperties', resource_type=ResourceType.MGMT_RESOURCE_RESOURCES)
+ properties = DeploymentProperties(
+ template=template, template_link=None, parameters=parameters, mode=mode)
+ client = resource_client_factory(cmd.cli_ctx)
+ if validate_only:
+ return sdk_no_wait(no_wait, client.deployments.validate, resource_group_name, deployment_name, properties)
+
+ deploy_poll = sdk_no_wait(no_wait, client.deployments.create_or_update, resource_group_name,
+ deployment_name, properties)
+ result = LongRunningOperation(cmd.cli_ctx)(deploy_poll)
+ return result
+
+
+def _build_detailed_error(top_error, output_list):
+ if output_list:
+ output_list.append(' Inner Error - Code: "{}" Message: "{}"'.format(top_error.code, top_error.message))
+ else:
+ output_list.append('Error - Code: "{}" Message: "{}"'.format(top_error.code, top_error.message))
+
+ if top_error.details:
+ for error in top_error.details:
+ _build_detailed_error(error, output_list)
+
+ return output_list
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_client_factory.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_client_factory.py
index 0bf394c33d3..6c34937ff96 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/_client_factory.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_client_factory.py
@@ -10,10 +10,30 @@ def servicefabric_client_factory(cli_ctx, **_):
return get_mgmt_service_client(cli_ctx, ServiceFabricManagementClient)
-def servicefabric_fabric_client_factory(cli_ctx, kwargs):
+def servicefabric_client_factory_all(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs)
+
+
+def servicefabric_clusters_client_factory(cli_ctx, kwargs):
return servicefabric_client_factory(cli_ctx, **kwargs).clusters
+def servicefabric_application_type_client_factory(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs).application_types
+
+
+def servicefabric_application_type_version_client_factory(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs).application_type_versions
+
+
+def servicefabric_application_client_factory(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs).applications
+
+
+def servicefabric_service_client_factory(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs).services
+
+
def resource_client_factory(cli_ctx, **_):
from azure.cli.core.commands.client_factory import get_mgmt_service_client
from azure.cli.core.profiles import ResourceType
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_help.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_help.py
index 48e1cdbada6..6f5d787b64a 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_help.py
@@ -17,6 +17,35 @@
short-summary: Manage applications running on an Azure Service Fabric cluster.
"""
+helps['sf application create'] = """
+type: command
+short-summary: Create a new application on an Azure Service Fabric cluster.
+examples:
+ - name: Create application "testApp" with parameters. The application type "TestAppType" version "v1" should already exist in the cluster, and the application parameters should be defined in the application manifest.
+ text: >
+ az sf application create -g testRG -c testCluster --application-name testApp --application-type-name TestAppType \\
+ --application-type-version v1 --application-parameters key0=value0
+ - name: Create application "testApp" and app type version using the package url provided.
+ text: >
+ az sf application create -g testRG -c testCluster --application-name testApp --application-type-name TestAppType \\
+ --application-type-version v1 --package-url "https://sftestapp.blob.core.windows.net/sftestapp/testApp_1.0.sfpkg" \\
+ --application-parameters key0=value0
+"""
+
+helps['sf application update'] = """
+type: command
+short-summary: Update a Azure Service Fabric application. This allows updating the application parameters and/or upgrade the application type version which will trigger an application upgrade.
+examples:
+ - name: Update application parameters and upgreade policy values and app type version to v2.
+ text: >
+ az sf application update -g testRG -c testCluster --application-name testApp --application-type-version v2 \\
+ --application-parameters key0=value0 --health-check-stable-duration 0 --health-check-wait-duration 0 --health-check-retry-timeout 0 \\
+ --upgrade-domain-timeout 5000 --upgrade-timeout 7000 --failure-action Rollback --upgrade-replica-set-check-timeout 300 --force-restart
+ - name: Update application minimum and maximum nodes.
+ text: >
+ az sf application update -g testRG -c testCluster --application-name testApp --minimum-nodes 1 --maximum-nodes 3
+"""
+
helps['sf application certificate'] = """
type: group
short-summary: Manage the certificate of an application.
@@ -28,7 +57,168 @@
examples:
- name: Add an application certificate.
text: >
- az sf application certificate add -g group-name -n cluster1 --secret-identifier 'https://{KeyVault}.vault.azure.net/secrets/{Secret}'
+ az sf application certificate add -g group-name -c cluster1 --secret-identifier 'https://{KeyVault}.vault.azure.net/secrets/{Secret}'
+"""
+
+helps['sf application show'] = """
+type: command
+short-summary: Show the properties of an application on an Azure Service Fabric cluster.
+examples:
+ - name: Get application.
+ text: >
+ az sf application show -g testRG -c testCluster --application-name testApp
+"""
+
+helps['sf application list'] = """
+type: command
+short-summary: List applications of a given cluster.
+examples:
+ - name: List applications for a given cluster.
+ text: >
+ az sf application list -g testRG -c testCluster
+"""
+
+helps['sf application delete'] = """
+type: command
+short-summary: Delete an application.
+examples:
+ - name: Delete application.
+ text: >
+ az sf application delete -g testRG -c testCluster --application-name testApp
+"""
+
+helps['sf application-type'] = """
+type: group
+short-summary: Manage applications types and its versions running on an Azure Service Fabric cluster.
+"""
+
+helps['sf application-type'] = """
+type: group
+short-summary: Manage application types on an Azure Service Fabric cluster.
+"""
+
+helps['sf application-type create'] = """
+type: command
+short-summary: Create a new application type on an Azure Service Fabric cluster.
+examples:
+ - name: Create new application type.
+ text: >
+ az sf application-type create -g testRG -c testCluster --application-type-name testAppType
+"""
+
+helps['sf application-type show'] = """
+type: command
+short-summary: Show the properties of an application type on an Azure Service Fabric cluster.
+examples:
+ - name: Get application type.
+ text: >
+ az sf application-type show -g testRG -c testCluster --application-type-name CalcServiceApp
+"""
+
+helps['sf application-type list'] = """
+type: command
+short-summary: List application types of a given cluster.
+examples:
+ - name: List application types for a given cluster.
+ text: >
+ az sf application-type list -g testRG -c testCluster
+"""
+
+helps['sf application-type delete'] = """
+type: command
+short-summary: Delete an application type.
+examples:
+ - name: Delete application type.
+ text: >
+ az sf application-type delete -g testRG -c testCluster --application-type-name CalcServiceApp
+"""
+
+helps['sf application-type version'] = """
+type: group
+short-summary: Manage application type versions on an Azure Service Fabric cluster.
+"""
+
+helps['sf application-type version create'] = """
+type: command
+short-summary: Create a new application type on an Azure Service Fabric cluster.
+examples:
+ - name: Create new application type version using the provided package url. The version in the application manifest contained in the package should have the same version as the one specified in --version.
+ text: >
+ az sf application-type version create -g testRG -c testCluster --application-type-name testAppType \\
+ --version 1.0 --package-url "https://sftestapp.blob.core.windows.net/sftestapp/testApp_1.0.sfpkg"
+"""
+
+helps['sf application-type version show'] = """
+type: command
+short-summary: Show the properties of an application type version on an Azure Service Fabric cluster.
+examples:
+ - name: Show the properties of an application type version on an Azure Service Fabric cluster.
+ text: >
+ az sf application-type version show -g testRG -c testCluster --application-type-name CalcServiceApp --version 1.0
+"""
+
+helps['sf application-type version list'] = """
+type: command
+short-summary: List version of a given application type.
+examples:
+ - name: List versions for a particular application type.
+ text: >
+ az sf application-type version list -g testRG -c testCluster --application-type-name CalcServiceApp
+"""
+
+helps['sf application-type version delete'] = """
+type: command
+short-summary: Delete an application type version.
+examples:
+ - name: Delete application type version.
+ text: >
+ az sf application-type version delete -g testRG -c testCluster --application-type-name CalcServiceApp --version 1.0
+"""
+
+helps['sf service'] = """
+type: group
+short-summary: Manage services running on an Azure Service Fabric cluster.
+"""
+
+helps['sf service create'] = """
+type: command
+short-summary: Create a new service on an Azure Service Fabric cluster.
+examples:
+ - name: Create a new stateless service "testApp~testService1" with instance count -1 (on all the nodes).
+ text: >
+ az sf service create -g testRG -c testCluster --application-name testApp --state stateless --service-name testApp~testService \\
+ --service-type testStateless --instance-count -1 --partition-scheme singleton
+ - name: Create a new stateful service "testApp~testService2" with a target of 5 nodes.
+ text: >
+ az sf service create -g testRG -c testCluster --application-name testApp --state stateful --service-name testApp~testService2 \\
+ --service-type testStatefulType --min-replica-set-size 3 --target-replica-set-size 5
+"""
+
+helps['sf service show'] = """
+type: command
+short-summary: Get a service.
+examples:
+ - name: Show the properties of a service on an Azure Service Fabric cluster.
+ text: >
+ az sf service show -g testRG -c testCluster --application-name testApp --service-name testApp~testService
+"""
+
+helps['sf service list'] = """
+type: command
+short-summary: List services of a given application.
+examples:
+ - name: List services.
+ text: >
+ az sf service list -g testRG -c testCluster --application-name testApp
+"""
+
+helps['sf service delete'] = """
+type: command
+short-summary: Delete a service.
+examples:
+ - name: Delete service.
+ text: >
+ az sf service delete -g testRG -c testCluster --application-name testApp --service-name testApp~testService
"""
helps['sf cluster'] = """
@@ -47,11 +237,11 @@
examples:
- name: Add a certificate to a cluster using a keyvault secret identifier.
text: |
- az sf cluster certificate add -g group-name -n cluster1 \\
+ az sf cluster certificate add -g group-name -c cluster1 \\
--secret-identifier 'https://{KeyVault}.vault.azure.net/secrets/{Secret}'
- name: Add a self-signed certificate to a cluster.
text: >
- az sf cluster certificate add -g group-name -n cluster1 --certificate-subject-name test.com
+ az sf cluster certificate add -g group-name -c cluster1 --certificate-subject-name test.com
- name: Add a secondary cluster certificate to the cluster. (autogenerated)
text: az sf cluster certificate add --cluster-name cluster1 --resource-group group-name --secret-identifier 'https://{KeyVault}.vault.azure.net/secrets/{Secret}' --vault-name MyVault
@@ -64,7 +254,7 @@
examples:
- name: Remove a certificate by thumbprint.
text: >
- az sf cluster certificate remove -g group-name -n cluster1 --thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A'
+ az sf cluster certificate remove -g group-name -c cluster1 --thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A'
"""
@@ -79,7 +269,7 @@
examples:
- name: Add client certificate by thumbprint
text: >
- az sf cluster client-certificate add -g group-name -n cluster1 --thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A'
+ az sf cluster client-certificate add -g group-name -c cluster1 --thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A'
"""
@@ -89,7 +279,7 @@
examples:
- name: Remove a client certificate by thumbprint.
text: >
- az sf cluster client-certificate remove -g group-name -n cluster1 --thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A'
+ az sf cluster client-certificate remove -g group-name -c cluster1 --thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A'
"""
@@ -99,10 +289,10 @@
examples:
- name: Create a cluster with a given size and self-signed certificate that is downloaded locally.
text: >
- az sf cluster create -g group-name -n cluster1 -l westus --cluster-size 4 --vm-password Password#1234 --certificate-output-folder MyCertificates --certificate-subject-name cluster1
+ az sf cluster create -g group-name -c cluster1 -l westus --cluster-size 4 --vm-password Password#1234 --certificate-output-folder MyCertificates --certificate-subject-name cluster1
- name: Use a keyvault certificate and custom template to deploy a cluster.
text: >
- az sf cluster create -g group-name -n cluster1 -l westus --template-file template.json \\
+ az sf cluster create -g group-name -c cluster1 -l westus --template-file template.json \\
--parameter-file parameter.json --secret-identifier https://{KeyVault}.vault.azure.net:443/secrets/{MyCertificate}
"""
@@ -118,7 +308,7 @@
examples:
- name: Change the cluster durability level to 'Silver'.
text: >
- az sf cluster durability update -g group-name -n cluster1 --durability-level Silver --node-type nt1
+ az sf cluster durability update -g group-name -c cluster1 --durability-level Silver --node-type nt1
"""
@@ -138,7 +328,7 @@
examples:
- name: Add 2 'nt1' nodes to a cluster.
text: >
- az sf cluster node add -g group-name -n cluster1 --number-of-nodes-to-add 2 --node-type 'nt1'
+ az sf cluster node add -g group-name -c cluster1 --number-of-nodes-to-add 2 --node-type 'nt1'
"""
@@ -148,7 +338,7 @@
examples:
- name: Remove 2 'nt1' nodes from a cluster.
text: >
- az sf cluster node remove -g group-name -n cluster1 --node-type 'nt1' --number-of-nodes-to-remove 2
+ az sf cluster node remove -g group-name -c cluster1 --node-type 'nt1' --number-of-nodes-to-remove 2
"""
@@ -163,7 +353,7 @@
examples:
- name: Add a new node type to a cluster.
text: >
- az sf cluster node-type add -g group-name -n cluster1 --node-type 'n2' --capacity 5 --vm-user-name 'adminName' --vm-password testPassword0
+ az sf cluster node-type add -g group-name -c cluster1 --node-type 'n2' --capacity 5 --vm-user-name 'adminName' --vm-password testPassword0
"""
@@ -178,7 +368,7 @@
examples:
- name: Change the cluster reliability level to 'Silver'.
text: >
- az sf cluster reliability update -g group-name -n cluster1 --reliability-level Silver
+ az sf cluster reliability update -g group-name -c cluster1 --reliability-level Silver
"""
@@ -193,7 +383,7 @@
examples:
- name: Remove the `MaxFileOperationTimeout` setting from a cluster.
text: >
- az sf cluster setting remove -g group-name -n cluster1 --section 'NamingService' --parameter 'MaxFileOperationTimeout'
+ az sf cluster setting remove -g group-name -c cluster1 --section 'NamingService' --parameter 'MaxFileOperationTimeout'
"""
@@ -203,7 +393,7 @@
examples:
- name: Set the `MaxFileOperationTimeout` setting for a cluster to 5 seconds.
text: >
- az sf cluster setting set -g group-name -n cluster1 --section 'NamingService' --parameter 'MaxFileOperationTimeout' --value 5000
+ az sf cluster setting set -g group-name -c cluster1 --section 'NamingService' --parameter 'MaxFileOperationTimeout' --value 5000
"""
@@ -218,5 +408,5 @@
examples:
- name: Set a cluster to use the 'Automatic' upgrade mode.
text: >
- az sf cluster upgrade-type set -g group-name -n cluster1 --upgrade-mode Automatic
+ az sf cluster upgrade-type set -g group-name -c cluster1 --upgrade-mode Automatic
"""
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_params.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_params.py
index 1674bc6e109..d6cc13b99db 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_params.py
@@ -4,16 +4,45 @@
# --------------------------------------------------------------------------------------------
# pylint: disable=line-too-long
-
+import argparse
+from azure.cli.core.util import CLIError
from azure.cli.core.commands.validators import get_default_location_from_resource_group
-from azure.cli.core.commands.parameters import resource_group_name_type, get_enum_type
+from azure.cli.core.commands.parameters import resource_group_name_type, get_enum_type, get_three_state_flag
from azure.cli.core.util import get_json_object
+from azure.cli.command_modules.servicefabric._validators import validate_create_service, validate_update_application, validate_create_application
+from knack.arguments import CLIArgumentType
def load_arguments(self, _): # pylint: disable=too-many-statements
+ # PARAMETER REGISTRATION
+ application_parameters = CLIArgumentType(
+ options_list=['--parameters', '--application-parameters'],
+ action=addAppParamsAction,
+ nargs='+',
+ help='Specify the application parameters as key/value pairs. These parameters must exist in the application manifest. '
+ 'for example: --application-parameters param1=value1 param2=value2')
+
+ minimum_nodes = CLIArgumentType(
+ options_list=['--min-nodes', '--minimum-nodes'],
+ help='Specify the minimum number of nodes where Service Fabric will reserve capacity for this application, '
+ 'this does not mean that the application is guaranteed to have replicas on all those nodes. The value of this parameter must be a non-negative integer. '
+ 'Default value for this is zero, which means no capacity is reserved for the application.')
+
+ maximum_nodes = CLIArgumentType(
+ options_list=['--max-nodes', '--maximum-nodes'],
+ help='Specify the maximum number of nodes on which to place an application. '
+ 'The value of this parameter must be a non-negative integer. The default value is 0, which indicates the application can be placed on any number of nodes in the cluster.')
+
+ application_type_version = CLIArgumentType(
+ options_list=['--version', '--application-type-version'],
+ help='Specify the application type version.')
+
+ package_url = CLIArgumentType(
+ help='Specify the url of the application package sfpkg file.')
+
with self.argument_context('sf') as c:
- c.argument('resource_group_name', arg_type=resource_group_name_type, id_part=None, help='The resource group name')
- c.argument('cluster_name', options_list=['--name', '--cluster-name', '-n'], help='Specify the name of the cluster, if not given it will be same as resource group name')
+ c.argument('resource_group_name', arg_type=resource_group_name_type, id_part=None, help='Specify the resource group name. You can configure the default group using `az configure --defaults group=`')
+ c.argument('cluster_name', options_list=['--cluster-name', '-c'], help='Specify the name of the cluster, if not given it will be same as resource group name')
c.argument('location', validator=get_default_location_from_resource_group)
c.argument('secret_identifier', help='The existing Azure key vault secret URL')
c.argument('certificate_file', help='The existing certificate file path for the primary cluster certificate.')
@@ -42,6 +71,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
help='The Operating System of the VMs that make up the cluster.')
c.argument('node_type', help='the Node type name.')
+ # cluster
with self.argument_context('sf cluster list') as c:
c.argument('resource_group_name', arg_type=resource_group_name_type, id_part=None, help='The resource group name')
@@ -111,3 +141,97 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
help='JSON encoded parameters configuration. Use @{file} to load from a file. '
'For example: [{"isAdmin":true, "certificateCommonName": "test.com", '
'"certificateIssuerThumbprint": "22B4AE296B504E512DF880A77A2CAE20200FF922"}]')
+
+ # application-type
+ with self.argument_context('sf application-type') as c:
+ c.argument('application_type_name', options_list=['--name', '--application-type-name'], help='Specify the application type name.')
+
+ # application-type version
+ with self.argument_context('sf application-type version create') as c:
+ c.argument('version', arg_type=application_type_version)
+ c.argument('package_url', arg_type=package_url)
+
+ # application
+ with self.argument_context('sf application') as c:
+ c.argument('application_name', options_list=['--name', '--application-name'], help='Specify the application name.')
+
+ with self.argument_context('sf application update', validator=validate_update_application) as c:
+ c.argument('application_type_version', arg_type=application_type_version)
+ c.argument('application_parameters', arg_type=application_parameters)
+ c.argument('minimum_nodes', arg_type=minimum_nodes)
+ c.argument('maximum_nodes', arg_type=maximum_nodes)
+ c.argument('force_restart', arg_type=get_three_state_flag(),
+ help='Indicates that the service host restarts even if the upgrade is a configuration-only change.')
+ c.argument('service_type_health_policy_map',
+ help='Specify the map of the health policy to use for different service types as a hash table in the following format: {\"ServiceTypeName\" : \"MaxPercentUnhealthyPartitionsPerService,MaxPercentUnhealthyReplicasPerPartition,MaxPercentUnhealthyServices\"}. For example: @{ \"ServiceTypeName01\" = \"5,10,5\"; \"ServiceTypeName02\" = \"5,5,5\" }')
+
+ with self.argument_context('sf application update', arg_group='Upgrade description') as c:
+ c.argument('upgrade_replica_set_check_timeout',
+ help='Specify the maximum time, in seconds, that Service Fabric waits for a service to reconfigure into a safe state, if not already in a safe state, before Service Fabric proceeds with the upgrade.')
+ c.argument('failure_action', arg_type=get_enum_type(['Rollback', 'Manual']),
+ help='Specify the action to take if the monitored upgrade fails. The acceptable values for this parameter are Rollback or Manual.')
+ c.argument('health_check_retry_timeout', options_list=['--hc-retry-timeout', '--health-check-retry-timeout'],
+ help='Specify the duration, in seconds, after which Service Fabric retries the health check if the previous health check fails.')
+ c.argument('health_check_wait_duration', options_list=['--hc-wait-duration', '--health-check-wait-duration'],
+ help='Specify the duration, in seconds, that Service Fabric waits before it performs the initial health check after it finishes the upgrade on the upgrade domain.')
+ c.argument('health_check_stable_duration', options_list=['--hc-stable-duration', '--health-check-stable-duration'],
+ help='Specify the duration, in seconds, that Service Fabric waits in order to verify that the application is stable before moving to the next upgrade domain or completing the upgrade. This wait duration prevents undetected changes of health right after the health check is performed.')
+ c.argument('upgrade_domain_timeout', options_list=['--ud_timeout', '--upgrade-domain-timeout'],
+ help='Specify the maximum time, in seconds, that Service Fabric takes to upgrade a single upgrade domain. After this period, the upgrade fails.')
+ c.argument('upgrade_timeout',
+ help='Specify the maximum time, in seconds, that Service Fabric takes for the entire upgrade. After this period, the upgrade fails.')
+ c.argument('consider_warning_as_error', options_list=['--warning-as-error', '--consider-warning-as-error'], arg_type=get_three_state_flag(),
+ help='Indicates whether to treat a warning health event as an error event during health evaluation.')
+ c.argument('default_service_type_max_percent_unhealthy_partitions_per_service', options_list=['--max-porcent-unhealthy-partitions'],
+ help='Specify the maximum percent of unhelthy partitions per service allowed by the health policy for the default service type to use for the monitored upgrade. Allowed values are form 0 to 100.')
+ c.argument('default_service_type_max_percent_unhealthy_replicas_per_partition', options_list=['--max-porcent-unhealthy-replicas'],
+ help='Specify the maximum percent of unhelthy replicas per service allowed by the health policy for the default service type to use for the monitored upgrade. Allowed values are form 0 to 100.')
+ c.argument('default_service_type_max_percent_unhealthy_services', options_list=['--max-porcent-unhealthy-services'],
+ help='Specify the maximum percent of unhelthy services allowed by the health policy for the default service type to use for the monitored upgrade. Allowed values are form 0 to 100.')
+ c.argument('max_percent_unhealthy_deployed_applications', options_list=['--max-porcent-unhealthy-apps'],
+ help='Specify the mximum percentage of the application instances deployed on the nodes in the cluster that have a health state of error before the application health state for the cluster is error. Allowed values are form 0 to 100.')
+
+ with self.argument_context('sf application create', validator=validate_create_application) as c:
+ c.argument('application_type_name', options_list=['--type-name', '--application-type-name'], help='Specify the application type name.')
+ c.argument('application_type_version', arg_type=application_type_version)
+ c.argument('package_url', arg_type=package_url)
+ c.argument('application_parameters', arg_type=application_parameters)
+ c.argument('minimum_nodes', arg_type=minimum_nodes)
+ c.argument('maximum_nodes', arg_type=maximum_nodes)
+
+ # service
+ with self.argument_context('sf service') as c:
+ c.argument('service_name', options_list=['--name', '--service-name'],
+ help='Specify the name of the service. The application name must be a prefix of the service name, for example: appName~serviceName')
+
+ with self.argument_context('sf service create', validator=validate_create_service) as c:
+ c.argument('service_type',
+ help='Specify the service type name of the application, it should exist in the application manifest.')
+ c.argument('application_name', options_list=['--application', '--application-name'],
+ help='Specify the name of the service. The application name must be a prefix of the service name, for example: appName~serviceName')
+ c.argument('state', arg_type=get_enum_type(['stateless', 'stateful']), help='Specify if the service is stateless or stateful.')
+ c.argument('instance_count', help='Specify the instance count for the stateless service. If -1 is used, it means it will run on all the nodes.')
+ c.argument('min_replica_set_size', help='Specify the min replica set size for the stateful service.')
+ c.argument('target_replica_set_size', help='Specify the target replica set size for the stateful service.')
+ c.argument('default_move_cost', arg_type=get_enum_type(['Zero', 'Low', 'Medium', 'High']),
+ help='Specify the default cost for a move. Higher costs make it less likely that the Cluster Resource Manager will move the replica when trying to balance the cluster.')
+ c.argument('partition_scheme', arg_type=get_enum_type(['singleton', 'uniformInt64', 'named']),
+ help='Specify what partition scheme to use. '
+ 'Singleton partitions are typically used when the service does not require any additional routing. '
+ 'UniformInt64 means that each partition owns a range of int64 keys. '
+ 'Named is usually for services with data that can be bucketed, within a bounded set. Some common examples of data fields used as named partition keys would be regions, postal codes, customer groups, or other business boundaries.')
+
+
+# pylint: disable=protected-access
+# pylint: disable=too-few-public-methods
+class addAppParamsAction(argparse._AppendAction):
+
+ def __call__(self, parser, namespace, values, option_string=None):
+ params = {}
+ for item in values:
+ try:
+ key, value = item.split('=', 1)
+ params[key] = value
+ except ValueError:
+ raise CLIError('usage error: {} KEY=VALUE [KEY=VALUE ...]'.format(option_string))
+ namespace.application_parameters = params
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py
new file mode 100644
index 00000000000..e803de73876
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py
@@ -0,0 +1,104 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+from msrestazure.azure_exceptions import CloudError
+from knack.util import CLIError
+from knack.log import get_logger
+from ._client_factory import servicefabric_client_factory
+
+logger = get_logger(__name__)
+
+
+def validate_create_service(namespace):
+ if namespace.state == 'stateless':
+ if namespace.target_replica_set_size or namespace.min_replica_set_size:
+ raise CLIError("--target-replica-set-size and --min-replica-set-size should only be use with "
+ "--state stateful")
+ if not namespace.instance_count:
+ raise CLIError("--instance-count is required")
+ else: # stateful
+ if namespace.instance_count:
+ raise CLIError("Unexpected parameter --instance-count should only be use with --state stateless")
+ if not namespace.target_replica_set_size or not namespace.min_replica_set_size:
+ raise CLIError("--target-replica-set-size and --min-replica-set-size are required")
+
+ if not namespace.service_name.startswith(namespace.application_name):
+ raise CLIError("Invalid service name, the application name must be a prefix of the service name, "
+ "for example: '{}~{}'".format(namespace.application_name, namespace.service_name))
+
+
+def validate_update_application(cmd, namespace):
+ client = servicefabric_client_factory(cmd.cli_ctx)
+ app = _safe_get_resource(client.applications.get,
+ (namespace.resource_group_name, namespace.cluster_name, namespace.application_name))
+ if app is None:
+ raise CLIError("Application '{}' Not Found.".format(namespace.application_name))
+ if namespace.application_type_version is not None:
+ if app.type_version == namespace.application_type_version:
+ raise CLIError("The application '{}' is alrady running with type version '{}'."
+ .format(app.name, app.type_version))
+ type_version = _safe_get_resource(client.application_type_versions.get,
+ (namespace.resource_group_name,
+ namespace.cluster_name,
+ app.type_name,
+ namespace.application_type_version))
+ if type_version is None:
+ raise CLIError("Application type version {}:{} not found. "
+ "Create the type version before runnig this command."
+ .format(app.type_name, namespace.application_type_version))
+
+ if namespace.upgrade_replica_set_check_timeout:
+ namespace.upgrade_replica_set_check_timeout = int(namespace.upgrade_replica_set_check_timeout)
+ if namespace.health_check_stable_duration:
+ namespace.health_check_stable_duration = int(namespace.health_check_stable_duration)
+ if namespace.health_check_retry_timeout:
+ namespace.health_check_retry_timeout = int(namespace.health_check_retry_timeout)
+ if namespace.health_check_wait_duration:
+ namespace.health_check_wait_duration = int(namespace.health_check_wait_duration)
+ if namespace.upgrade_timeout:
+ namespace.upgrade_timeout = int(namespace.upgrade_timeout)
+ if namespace.upgrade_domain_timeout:
+ namespace.upgrade_domain_timeout = int(namespace.upgrade_domain_timeout)
+ if namespace.minimum_nodes:
+ namespace.minimum_nodes = int(namespace.minimum_nodes)
+ if namespace.minimum_nodes < 0:
+ raise CLIError("minimum_nodes should be a non-negative integer.")
+ if namespace.maximum_nodes:
+ namespace.maximum_nodes = int(namespace.maximum_nodes)
+ if namespace.maximum_nodes < 0:
+ raise CLIError("maximum_nodes should be a non-negative integer.")
+
+
+def validate_create_application(cmd, namespace):
+ client = servicefabric_client_factory(cmd.cli_ctx)
+ if namespace.package_url is None:
+ type_version = _safe_get_resource(client.application_type_versions.get,
+ (namespace.resource_group_name,
+ namespace.cluster_name,
+ namespace.application_type_name,
+ namespace.application_type_version))
+ if type_version is None:
+ raise CLIError("Application type version {}:{} not found. "
+ "Create the type version before runnig this command or use --package-url to create it."
+ .format(namespace.application_type_name, namespace.application_type_version))
+
+ if namespace.minimum_nodes:
+ namespace.minimum_nodes = int(namespace.minimum_nodes)
+ if namespace.minimum_nodes < 0:
+ raise CLIError("minimum_nodes should be a non-negative integer.")
+ if namespace.maximum_nodes:
+ namespace.maximum_nodes = int(namespace.maximum_nodes)
+ if namespace.maximum_nodes < 0:
+ raise CLIError("maximum_nodes should be a non-negative integer.")
+
+
+def _safe_get_resource(getResourceAction, params):
+ try:
+ return getResourceAction(*params)
+ except CloudError as ex:
+ if ex.error.error == 'ResourceNotFound':
+ return None
+ logger.warning("Unable to get resource, exception: %s", ex)
+ raise
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/commands.py b/src/azure-cli/azure/cli/command_modules/servicefabric/commands.py
index 2c30006423a..ec850d4c605 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/commands.py
@@ -5,16 +5,46 @@
from azure.cli.core.commands import CliCommandType
-from ._client_factory import servicefabric_fabric_client_factory
+from ._client_factory import (servicefabric_clusters_client_factory,
+ servicefabric_client_factory_all,
+ servicefabric_application_type_client_factory,
+ servicefabric_application_type_version_client_factory,
+ servicefabric_application_client_factory,
+ servicefabric_service_client_factory)
def load_command_table(self, _):
cluster_mgmt_util = CliCommandType(
operations_tmpl='azure.mgmt.servicefabric.operations#ClustersOperations.{}',
- client_factory=servicefabric_fabric_client_factory
+ client_factory=servicefabric_clusters_client_factory
)
- with self.command_group('sf cluster', cluster_mgmt_util, client_factory=servicefabric_fabric_client_factory) as g:
+ application_type_mgmt = CliCommandType(
+ operations_tmpl='azure.mgmt.servicefabric.operations#ApplicationTypesOperations.{}',
+ client_factory=servicefabric_application_type_client_factory
+ )
+
+ application_type_version_mgmt = CliCommandType(
+ operations_tmpl='azure.mgmt.servicefabric.operations#ApplicationTypeVersionsOperations.{}',
+ client_factory=servicefabric_application_type_version_client_factory
+ )
+
+ application_mgmt = CliCommandType(
+ operations_tmpl='azure.mgmt.servicefabric.operations#ApplicationsOperations.{}',
+ client_factory=servicefabric_application_client_factory
+ )
+
+ service_mgmt = CliCommandType(
+ operations_tmpl='azure.mgmt.servicefabric.operations#ServicesOperations.{}',
+ client_factory=servicefabric_service_client_factory
+ )
+
+ application_custom_type = CliCommandType(
+ operations_tmpl='azure.cli.command_modules.servicefabric.operations.applications#{}',
+ client_factory=servicefabric_client_factory_all
+ )
+
+ with self.command_group('sf cluster', cluster_mgmt_util, client_factory=servicefabric_clusters_client_factory) as g:
g.show_command('show', 'get')
g.custom_command('list', 'list_cluster')
g.custom_command('create', 'new_cluster')
@@ -34,5 +64,34 @@ def load_command_table(self, _):
with self.command_group('sf application certificate') as g:
g.custom_command('add', 'add_app_cert')
+ with self.command_group('sf application-type', application_type_mgmt,
+ custom_command_type=application_custom_type) as g:
+ g.command('list', 'list')
+ g.command('delete', 'delete')
+ g.show_command('show', 'get')
+ g.custom_command('create', 'create_app_type')
+
+ with self.command_group('sf application-type version', application_type_version_mgmt,
+ custom_command_type=application_custom_type) as g:
+ g.command('list', 'list')
+ g.command('delete', 'delete')
+ g.show_command('show', 'get')
+ g.custom_command('create', 'create_app_type_version')
+
+ with self.command_group('sf application', application_mgmt,
+ custom_command_type=application_custom_type) as g:
+ g.command('list', 'list')
+ g.command('delete', 'delete')
+ g.show_command('show', 'get')
+ g.custom_command('create', 'create_app')
+ g.custom_command('update', 'update_app')
+
+ with self.command_group('sf service', service_mgmt,
+ custom_command_type=application_custom_type) as g:
+ g.command('list', 'list')
+ g.command('delete', 'delete')
+ g.show_command('show', 'get')
+ g.custom_command('create', 'create_service')
+
with self.command_group('sf', is_preview=True):
pass
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 4cd5f3e0856..d3d39366c04 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py
@@ -22,6 +22,7 @@
from azure.graphrbac import GraphRbacManagementClient
from azure.cli.core.profiles import ResourceType, get_sdk, get_api_version
from azure.keyvault import KeyVaultAuthentication, KeyVaultClient
+from azure.cli.command_modules.servicefabric._arm_deployment_utils import validate_and_deploy_arm_template
from azure.mgmt.servicefabric.models import (ClusterUpdateParameters,
ClientCertificateThumbprint,
@@ -188,10 +189,6 @@ def new_cluster(cmd,
if file_extension is None or file_extension.lower() != '.pfx'.lower():
raise CLIError('\'--certificate_file\' should be a valid pfx file')
- import datetime
- suffix = datetime.datetime.now().strftime("%Y%m%d%H%M")
- deployment_name = 'AzurePSDeployment-' + suffix
-
vault_id = None
certificate_uri = None
cert_thumbprint = None
@@ -249,16 +246,7 @@ def new_cluster(cmd,
cert_thumbprint = parameters[CERTIFICATE_THUMBPRINT]['value']
template = get_file_json(template_file)
- logger.info("Validating the deployment")
- validate_result = _deploy_arm_template_core(
- cli_ctx, resource_group_name, template, parameters, deployment_name, 'incremental', True)
- if validate_result.error is not None:
- errors_detailed = _build_detailed_error(validate_result.error, [])
- errors_detailed.insert(0, "Error validating template. See below for more information.")
- raise CLIError('\n'.join(errors_detailed))
- logger.info("Deployment is valid, and begin to deploy")
- _deploy_arm_template_core(cli_ctx, resource_group_name, template,
- parameters, deployment_name, 'incremental', False)
+ validate_and_deploy_arm_template(cmd, resource_group_name, template, parameters)
output_dict = {}
output_dict['vm_user_name'] = vm_user_name
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/operations/__init__.py b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/__init__.py
new file mode 100644
index 00000000000..34913fb394d
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/__init__.py
@@ -0,0 +1,4 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/operations/applications.py b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/applications.py
new file mode 100644
index 00000000000..87331136223
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/applications.py
@@ -0,0 +1,308 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+# pylint: disable=line-too-long,too-many-lines
+
+import os
+import time
+
+from azure.cli.core.util import get_file_json
+from azure.mgmt.servicefabric.models import (ErrorModelException,
+ ApplicationTypeVersionResource,
+ ApplicationResource,
+ ApplicationUpgradePolicy,
+ ArmRollingUpgradeMonitoringPolicy,
+ ArmApplicationHealthPolicy,
+ ArmServiceTypeHealthPolicy)
+from azure.cli.command_modules.servicefabric._arm_deployment_utils import validate_and_deploy_arm_template
+
+from knack.log import get_logger
+
+logger = get_logger(__name__)
+
+
+def create_app(client,
+ resource_group_name,
+ cluster_name,
+ application_type_name,
+ application_type_version,
+ application_name,
+ package_url=None,
+ application_parameters=None,
+ minimum_nodes=None,
+ maximum_nodes=None):
+ if package_url is not None:
+ create_app_type_version(client, resource_group_name, cluster_name, application_type_name, application_type_version, package_url)
+
+ try:
+ apps = client.applications.list(resource_group_name, cluster_name)
+ for app in apps.value:
+ if app.name.lower() == application_name.lower():
+ logger.info("Application '%s' already exists", application_name)
+ return app
+
+ appResource = ApplicationResource(type_name=application_type_name,
+ type_version=application_type_version,
+ minimum_nodes=minimum_nodes,
+ maximum_nodes=maximum_nodes,
+ parameters=application_parameters)
+ appResource.name = application_name
+ app = client.applications.create_or_update(resource_group_name, cluster_name, application_name, appResource).result()
+ return app
+ except ErrorModelException as ex:
+ logger.error("ErrorModelException: %s", ex)
+ raise
+
+
+def update_app(client,
+ resource_group_name,
+ cluster_name,
+ application_name,
+ application_type_version=None,
+ application_parameters=None,
+ minimum_nodes=None,
+ maximum_nodes=None,
+ force_restart=False,
+ upgrade_replica_set_check_timeout=None,
+ failure_action=None,
+ health_check_retry_timeout=None,
+ health_check_wait_duration=None,
+ health_check_stable_duration=None,
+ upgrade_domain_timeout=None,
+ upgrade_timeout=None,
+ consider_warning_as_error=False,
+ default_service_type_max_percent_unhealthy_partitions_per_service=None,
+ default_service_type_max_percent_unhealthy_replicas_per_partition=None,
+ default_service_type_max_percent_unhealthy_services=None,
+ max_percent_unhealthy_deployed_applications=None,
+ service_type_health_policy_map=None):
+ try:
+ currentApp = client.applications.get(resource_group_name, cluster_name, application_name)
+ appResource = currentApp
+ # TODO: change to patch once the fix is deployed in the rp
+ # appResourceUpdate: ApplicationResourceUpdate = ApplicationResourceUpdate()
+
+ if application_type_version:
+ appResource.type_version = application_type_version
+ if application_parameters:
+ appResource.parameters = application_parameters
+ if minimum_nodes is not None:
+ appResource.minimum_nodes = minimum_nodes
+ if maximum_nodes is not None:
+ appResource.maximum_nodes = maximum_nodes
+
+ appResource.upgrade_policy = _set_uprade_policy(currentApp.upgrade_policy,
+ force_restart,
+ upgrade_replica_set_check_timeout,
+ failure_action,
+ health_check_retry_timeout,
+ health_check_wait_duration,
+ health_check_stable_duration,
+ upgrade_domain_timeout,
+ upgrade_timeout,
+ consider_warning_as_error,
+ default_service_type_max_percent_unhealthy_partitions_per_service,
+ default_service_type_max_percent_unhealthy_replicas_per_partition,
+ default_service_type_max_percent_unhealthy_services,
+ max_percent_unhealthy_deployed_applications,
+ service_type_health_policy_map)
+
+ # TODO: change to patch once the fix is deployed in the rp
+ # client.applications.update(resource_group_name, cluster_name, application_name, appResourceUpdate)
+ return client.applications.create_or_update(resource_group_name, cluster_name, application_name, appResource).result()
+ except ErrorModelException as ex:
+ logger.error("ErrorModelException: %s", ex)
+ raise
+
+
+def create_app_type(client, resource_group_name, cluster_name, application_type_name):
+ try:
+ appTypes = client.application_types.list(resource_group_name, cluster_name)
+ for appType in appTypes.value:
+ if appType.name.lower() == application_type_name.lower():
+ logger.info("Application type '%s' already exists", application_type_name)
+ return appType
+
+ logger.info("Creating application type '%s'", application_type_name)
+ return client.application_types.create_or_update(resource_group_name, cluster_name, application_type_name)
+ except ErrorModelException as ex:
+ logger.error("ErrorModelException: %s", ex)
+ raise
+
+
+def create_app_type_version(client,
+ resource_group_name,
+ cluster_name,
+ application_type_name,
+ version,
+ package_url):
+ create_app_type(client, resource_group_name, cluster_name, application_type_name)
+ try:
+ appTypeVerions = client.application_type_versions.list(resource_group_name, cluster_name, application_type_name)
+ for appTypeVerion in appTypeVerions.value:
+ if appTypeVerion.name.lower() == version.lower():
+ logger.info("Application type version '%s' already exists", version)
+ return appTypeVerion
+
+ appTypeVersionResource = ApplicationTypeVersionResource(app_package_url=package_url)
+ logger.info("Creating application type version %s:%s", application_type_name, version)
+ return client.application_type_versions.create_or_update(resource_group_name,
+ cluster_name,
+ application_type_name,
+ version,
+ appTypeVersionResource).result()
+ except ErrorModelException as ex:
+ logger.error("ErrorModelException: %s", ex)
+ raise
+
+
+def create_service(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ application_name,
+ service_name,
+ service_type,
+ state,
+ instance_count=None,
+ target_replica_set_size=None,
+ min_replica_set_size=None,
+ default_move_cost=None,
+ partition_scheme='singleton'):
+ parameter_file, template_file = _get_template_file_and_parameters_file()
+ template = get_file_json(template_file)
+ parameters = get_file_json(parameter_file)['parameters']
+
+ # set params
+ _set_parameters(parameters, "clusterName", cluster_name)
+ _set_parameters(parameters, "applicationName", application_name)
+ _set_parameters(parameters, "serviceName", service_name)
+
+ _set_service_parameters(template, parameters, "serviceTypeName", service_type, "string")
+
+ if partition_scheme == 'singleton':
+ _set_service_parameters(template, parameters, "partitionDescription", {"partitionScheme": "Singleton"}, "object")
+ elif partition_scheme == 'uniformInt64':
+ _set_service_parameters(template, parameters, "partitionDescription", {"partitionScheme": "UniformInt64Range"}, "object")
+ elif partition_scheme == 'named':
+ _set_service_parameters(template, parameters, "partitionDescription", {"partitionScheme": "Named"}, "object")
+
+ if state == 'stateless':
+ _set_service_parameters(template, parameters, "instanceCount", int(instance_count), "int")
+ else:
+ _set_service_parameters(template, parameters, "targetReplicaSetSize", int(target_replica_set_size), "int")
+ _set_service_parameters(template, parameters, "minReplicaSetSize", int(min_replica_set_size), "int")
+
+ if default_move_cost:
+ _set_service_parameters(template, parameters, "defaultMoveCost", default_move_cost, "string")
+
+ validate_and_deploy_arm_template(cmd, resource_group_name, template, parameters)
+
+ return client.services.get(resource_group_name, cluster_name, application_name, service_name)
+
+
+def _get_template_file_and_parameters_file():
+ script_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
+ template_parameter_folder = os.path.join('template', 'service')
+ parameter_file = os.path.join(
+ script_dir, template_parameter_folder, 'parameter.json')
+ template_file = os.path.join(
+ script_dir, template_parameter_folder, 'template.json')
+ return parameter_file, template_file
+
+
+def _set_service_parameters(template, parameters, name, value, param_type):
+ tempalte_parameters = template['parameters']
+ if name not in tempalte_parameters:
+ tempalte_parameters[name] = {}
+ tempalte_parameters[name]["type"] = param_type
+ tempalte_resources_properties = template['resources'][0]['properties']
+ tempalte_resources_properties[name] = "[parameters('{}')]".format(name)
+ _set_parameters(parameters, name, value)
+
+
+def _set_parameters(parameters, name, value):
+ if name not in parameters:
+ parameters[name] = {}
+ parameters[name]["value"] = value
+
+
+def _set_uprade_policy(current_upgrade_policy,
+ force_restart,
+ upgrade_replica_set_check_timeout,
+ failure_action,
+ health_check_retry_timeout,
+ health_check_wait_duration,
+ health_check_stable_duration,
+ upgrade_domain_timeout,
+ upgrade_timeout,
+ consider_warning_as_error,
+ default_service_type_max_percent_unhealthy_partitions_per_service,
+ default_service_type_max_percent_unhealthy_replicas_per_partition,
+ default_max_percent_service_type_unhealthy_services,
+ max_percent_unhealthy_deployed_applications,
+ service_type_health_policy_map):
+ if current_upgrade_policy is None:
+ current_upgrade_policy = ApplicationUpgradePolicy()
+
+ if force_restart:
+ current_upgrade_policy.force_restart = force_restart
+ if upgrade_replica_set_check_timeout is not None:
+ current_upgrade_policy.upgrade_replica_set_check_timeout = time.strftime('%H:%M:%S', time.gmtime(upgrade_replica_set_check_timeout))
+
+ # RollingUpgradeMonitoringPolicy
+ if current_upgrade_policy.rolling_upgrade_monitoring_policy is None:
+ # initialize with defaults
+ current_upgrade_policy.rolling_upgrade_monitoring_policy \
+ = ArmRollingUpgradeMonitoringPolicy(failure_action='Manual',
+ health_check_stable_duration=time.strftime('%H:%M:%S', time.gmtime(120)),
+ health_check_retry_timeout=time.strftime('%H:%M:%S', time.gmtime(600)),
+ health_check_wait_duration=time.strftime('%H:%M:%S', time.gmtime(0)),
+ upgrade_timeout=time.strftime('%H:%M:%S', time.gmtime(86399)),
+ upgrade_domain_timeout=time.strftime('%H:%M:%S', time.gmtime(86399)))
+
+ if failure_action:
+ current_upgrade_policy.rolling_upgrade_monitoring_policy.failure_action = failure_action
+ if health_check_stable_duration is not None:
+ current_upgrade_policy.rolling_upgrade_monitoring_policy.health_check_stable_duration = time.strftime('%H:%M:%S', time.gmtime(health_check_stable_duration))
+ if health_check_retry_timeout is not None:
+ current_upgrade_policy.rolling_upgrade_monitoring_policy.health_check_retry_timeout = time.strftime('%H:%M:%S', time.gmtime(health_check_retry_timeout))
+ if health_check_wait_duration is not None:
+ current_upgrade_policy.rolling_upgrade_monitoring_policy.health_check_wait_duration = time.strftime('%H:%M:%S', time.gmtime(health_check_wait_duration))
+ if upgrade_timeout is not None:
+ current_upgrade_policy.rolling_upgrade_monitoring_policy.upgrade_timeout = time.strftime('%H:%M:%S', time.gmtime(upgrade_timeout))
+ if upgrade_domain_timeout is not None:
+ current_upgrade_policy.rolling_upgrade_monitoring_policy.upgrade_domain_timeout = time.strftime('%H:%M:%S', time.gmtime(upgrade_domain_timeout))
+
+ # ApplicationHealthPolicy
+ if current_upgrade_policy.application_health_policy is None:
+ current_upgrade_policy.application_health_policy = ArmApplicationHealthPolicy()
+
+ if consider_warning_as_error:
+ current_upgrade_policy.application_health_policy.consider_warning_as_error = True
+
+ if current_upgrade_policy.application_health_policy.default_service_type_health_policy is None:
+ current_upgrade_policy.application_health_policy.default_service_type_health_policy = ArmServiceTypeHealthPolicy(
+ max_percent_unhealthy_partitions_per_service=default_service_type_max_percent_unhealthy_partitions_per_service,
+ max_percent_unhealthy_replicas_per_partition=default_service_type_max_percent_unhealthy_replicas_per_partition,
+ max_percent_unhealthy_services=default_max_percent_service_type_unhealthy_services)
+ else:
+ if default_service_type_max_percent_unhealthy_partitions_per_service:
+ current_upgrade_policy.application_health_policy.default_service_type_health_policy .max_percent_unhealthy_partitions_per_service \
+ = default_service_type_max_percent_unhealthy_partitions_per_service
+ if default_service_type_max_percent_unhealthy_replicas_per_partition:
+ current_upgrade_policy.application_health_policy.default_service_type_health_policy.max_percent_unhealthy_replicas_per_partition \
+ = default_service_type_max_percent_unhealthy_replicas_per_partition
+ if default_max_percent_service_type_unhealthy_services:
+ current_upgrade_policy.application_health_policy.default_service_type_health_policy.max_percent_unhealthy_partitions_per_service \
+ = default_max_percent_service_type_unhealthy_services
+
+ if max_percent_unhealthy_deployed_applications:
+ current_upgrade_policy.ApplicationHealthPolicy.max_percent_unhealthy_deployed_applications \
+ = max_percent_unhealthy_deployed_applications
+
+ if service_type_health_policy_map:
+ current_upgrade_policy.application_health_policy.service_type_health_policy_map = service_type_health_policy_map
+ return current_upgrade_policy
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/template/service/parameter.json b/src/azure-cli/azure/cli/command_modules/servicefabric/template/service/parameter.json
new file mode 100644
index 00000000000..3d46aeca42a
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/template/service/parameter.json
@@ -0,0 +1,15 @@
+{
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "clusterName": {
+ "value": ""
+ },
+ "applicationName": {
+ "value": ""
+ },
+ "serviceName": {
+ "value": ""
+ }
+ }
+ }
\ No newline at end of file
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/template/service/template.json b/src/azure-cli/azure/cli/command_modules/servicefabric/template/service/template.json
new file mode 100644
index 00000000000..5be64279b39
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/template/service/template.json
@@ -0,0 +1,63 @@
+{
+ "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "applicationName": {
+ "type": "string",
+ "metadata": {
+ "description": "The application name"
+ }
+ },
+ "clusterName": {
+ "type": "string",
+ "metadata": {
+ "description": "Name of your cluster - Between 3 and 23 characters. Letters and numbers only"
+ }
+ },
+ "serviceKind": {
+ "type": "string",
+ "defaultValue": "Stateless",
+ "metadata": {
+ "description": "The service kind. Stateless or Stateful"
+ }
+ },
+ "serviceName": {
+ "type": "string",
+ "defaultValue": "AzureFileVolumePlugin2~Service",
+ "metadata": {
+ "description": "The service name"
+ }
+ },
+ "serviceTypeName": {
+ "type": "string",
+ "defaultValue": "AzureFilesVolumePluginServiceType",
+ "metadata": {
+ "description": "The service type name"
+ }
+ },
+ "partitionScheme": {
+ "type": "string",
+ "defaultValue": "Singleton",
+ "metadata": {
+ "description": "Partition Scheme."
+ }
+ }
+ },
+ "resources": [
+ {
+ "apiVersion": "2019-03-01",
+ "type": "Microsoft.ServiceFabric/clusters/applications/services",
+ "name": "[concat(parameters('clusterName'), '/', parameters('applicationName'), '/', parameters('serviceName'))]",
+ "properties": {
+ "serviceKind": "[parameters('serviceKind')]",
+ "serviceTypeName": "[parameters('serviceTypeName')]",
+ "partitionDescription": {
+ "partitionScheme": "[parameters('partitionScheme')]"
+ },
+ "correlationScheme": [],
+ "serviceLoadMetrics": [],
+ "servicePlacementPolicies": []
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/policy.json b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/policy.json
index a50297ce98b..e2dee8b1436 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/policy.json
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/policy.json
@@ -35,4 +35,4 @@
"subject": "CN=CLIGetDefaultPolicy",
"validityInMonths": 12
}
- }
\ No newline at end of file
+ }
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_application.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_application.yaml
new file mode 100644
index 00000000000..88a4b2f021b
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_application.yaml
@@ -0,0 +1,8626 @@
+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 01:55:26 GMT
+ duration:
+ - '1404796'
+ expires:
+ - '-1'
+ ocp-aad-diagnostics-server-name:
+ - hwn6uEtjHiiLa1+/G29HvIs5WOJFHYFOq64UHyjuGvY=
+ ocp-aad-session-key:
+ - 8YO9OwziYwVdFfJb6WzU_8RqD6wI8tjS9gGK5uCg1xN27li8Q6vHbJ-PGK_WJGMz72E_SQbLXnaF5--hGSv1opcJGMzeFKO1BEG2cPHjmS-GliU-NH87wDinbV2wBmec.HfqNyWkG17Lp7npeW04KGeKRu3IKoLyXk-hy-l41c70
+ pragma:
+ - no-cache
+ request-id:
+ - febe17bc-67b2-4557-ad5d-b98185d24a51
+ 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=2018-02-14
+ 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 01:55:28 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=2018-02-14
+ 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 01:55:58 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 01:56:00 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK7xSwFy6dhghqlp8y96D2xdfK7Ur+XueQoO5HB3YGwHU3MS5Nv4PUE7FC6vu44FjHtoRT3/uXmgVjL9yNiOaLLUkJ2r7P54VqoUO1s1yaLDLmark5rijA90x0I3i26+RtJKNFWKY5i/279OsR+zOy6GC1l3Py6TyVmi2JYvojuofcXHtsYkn9z+GrB9CMrs5XuYFuslw7vvPXJZIBVdgXFcd1yvAATEX2J/jN49TqKe2MkHmeIifnarhnn6XjqloJyoVy38x6A0CQmDxVuhXTP6AzMuqXW+e5jlxdV/Nx/42uclZDDtn0ffTMa3h0F/S4wv+8hDyuaqIYGpFHwDXfUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAheGdsd+qkWTjb1KWrxTkcKtmvZm74EqjCOM37pgjT0vy9hDjd9EReXCp1Jq+R0mTANQMPC3GCishpQNXVe8BIgFi/hVyaXbeDW6Bbtba2HkPw4Ks19pidq+KEl+zuFKasPjSeafGa9lnlc6vJJb4EQBCyEJ1alCsTXHB//KYlIK4HQ484wTGR3u6Lrlu5h9rDeoDNNNYEuOWCqFoinI8XtvyXrCMnnvWyIQI+JYWHbEigTh25A4vysrH78BSPdJpt0PqHgSRC/2QGZWbeI/0QnntO48Ob0Bv0gEikXB+BgXUBWTuds6SJPvKTQddhMVNEYeum8TI8KEx8Xly5fVzY","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":"377780c915fc47279384e96aba0d234f"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:03 GMT
+ expires:
+ - '-1'
+ location:
+ - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=377780c915fc47279384e96aba0d234f
+ 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK7xSwFy6dhghqlp8y96D2xdfK7Ur+XueQoO5HB3YGwHU3MS5Nv4PUE7FC6vu44FjHtoRT3/uXmgVjL9yNiOaLLUkJ2r7P54VqoUO1s1yaLDLmark5rijA90x0I3i26+RtJKNFWKY5i/279OsR+zOy6GC1l3Py6TyVmi2JYvojuofcXHtsYkn9z+GrB9CMrs5XuYFuslw7vvPXJZIBVdgXFcd1yvAATEX2J/jN49TqKe2MkHmeIifnarhnn6XjqloJyoVy38x6A0CQmDxVuhXTP6AzMuqXW+e5jlxdV/Nx/42uclZDDtn0ffTMa3h0F/S4wv+8hDyuaqIYGpFHwDXfUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAheGdsd+qkWTjb1KWrxTkcKtmvZm74EqjCOM37pgjT0vy9hDjd9EReXCp1Jq+R0mTANQMPC3GCishpQNXVe8BIgFi/hVyaXbeDW6Bbtba2HkPw4Ks19pidq+KEl+zuFKasPjSeafGa9lnlc6vJJb4EQBCyEJ1alCsTXHB//KYlIK4HQ484wTGR3u6Lrlu5h9rDeoDNNNYEuOWCqFoinI8XtvyXrCMnnvWyIQI+JYWHbEigTh25A4vysrH78BSPdJpt0PqHgSRC/2QGZWbeI/0QnntO48Ob0Bv0gEikXB+BgXUBWTuds6SJPvKTQddhMVNEYeum8TI8KEx8Xly5fVzY","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":"377780c915fc47279384e96aba0d234f"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:02 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK7xSwFy6dhghqlp8y96D2xdfK7Ur+XueQoO5HB3YGwHU3MS5Nv4PUE7FC6vu44FjHtoRT3/uXmgVjL9yNiOaLLUkJ2r7P54VqoUO1s1yaLDLmark5rijA90x0I3i26+RtJKNFWKY5i/279OsR+zOy6GC1l3Py6TyVmi2JYvojuofcXHtsYkn9z+GrB9CMrs5XuYFuslw7vvPXJZIBVdgXFcd1yvAATEX2J/jN49TqKe2MkHmeIifnarhnn6XjqloJyoVy38x6A0CQmDxVuhXTP6AzMuqXW+e5jlxdV/Nx/42uclZDDtn0ffTMa3h0F/S4wv+8hDyuaqIYGpFHwDXfUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAheGdsd+qkWTjb1KWrxTkcKtmvZm74EqjCOM37pgjT0vy9hDjd9EReXCp1Jq+R0mTANQMPC3GCishpQNXVe8BIgFi/hVyaXbeDW6Bbtba2HkPw4Ks19pidq+KEl+zuFKasPjSeafGa9lnlc6vJJb4EQBCyEJ1alCsTXHB//KYlIK4HQ484wTGR3u6Lrlu5h9rDeoDNNNYEuOWCqFoinI8XtvyXrCMnnvWyIQI+JYWHbEigTh25A4vysrH78BSPdJpt0PqHgSRC/2QGZWbeI/0QnntO48Ob0Bv0gEikXB+BgXUBWTuds6SJPvKTQddhMVNEYeum8TI8KEx8Xly5fVzY","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":"377780c915fc47279384e96aba0d234f"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:13 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK7xSwFy6dhghqlp8y96D2xdfK7Ur+XueQoO5HB3YGwHU3MS5Nv4PUE7FC6vu44FjHtoRT3/uXmgVjL9yNiOaLLUkJ2r7P54VqoUO1s1yaLDLmark5rijA90x0I3i26+RtJKNFWKY5i/279OsR+zOy6GC1l3Py6TyVmi2JYvojuofcXHtsYkn9z+GrB9CMrs5XuYFuslw7vvPXJZIBVdgXFcd1yvAATEX2J/jN49TqKe2MkHmeIifnarhnn6XjqloJyoVy38x6A0CQmDxVuhXTP6AzMuqXW+e5jlxdV/Nx/42uclZDDtn0ffTMa3h0F/S4wv+8hDyuaqIYGpFHwDXfUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAheGdsd+qkWTjb1KWrxTkcKtmvZm74EqjCOM37pgjT0vy9hDjd9EReXCp1Jq+R0mTANQMPC3GCishpQNXVe8BIgFi/hVyaXbeDW6Bbtba2HkPw4Ks19pidq+KEl+zuFKasPjSeafGa9lnlc6vJJb4EQBCyEJ1alCsTXHB//KYlIK4HQ484wTGR3u6Lrlu5h9rDeoDNNNYEuOWCqFoinI8XtvyXrCMnnvWyIQI+JYWHbEigTh25A4vysrH78BSPdJpt0PqHgSRC/2QGZWbeI/0QnntO48Ob0Bv0gEikXB+BgXUBWTuds6SJPvKTQddhMVNEYeum8TI8KEx8Xly5fVzY","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"377780c915fc47279384e96aba0d234f"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1255'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:24 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/712e4ba9347c4bcb88a05b1864fdd4d7","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/712e4ba9347c4bcb88a05b1864fdd4d7","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/712e4ba9347c4bcb88a05b1864fdd4d7","x5t":"5iDWr0pY8JRdXQZ3jKohXhExEto","cer":"MIIDQjCCAiqgAwIBAgIQIRP1Sfo/Qaiqj83U+9Ok/DANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDEyMjAxNDYyMFoXDTIxMDEyMjAxNTYyMFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK7xSwFy6dhghqlp8y96D2xdfK7Ur+XueQoO5HB3YGwHU3MS5Nv4PUE7FC6vu44FjHtoRT3/uXmgVjL9yNiOaLLUkJ2r7P54VqoUO1s1yaLDLmark5rijA90x0I3i26+RtJKNFWKY5i/279OsR+zOy6GC1l3Py6TyVmi2JYvojuofcXHtsYkn9z+GrB9CMrs5XuYFuslw7vvPXJZIBVdgXFcd1yvAATEX2J/jN49TqKe2MkHmeIifnarhnn6XjqloJyoVy38x6A0CQmDxVuhXTP6AzMuqXW+e5jlxdV/Nx/42uclZDDtn0ffTMa3h0F/S4wv+8hDyuaqIYGpFHwDXfUCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFBivxgIP5rw/kks4gXKxAq+OtMQbMB0GA1UdDgQWBBQYr8YCD+a8P5JLOIFysQKvjrTEGzANBgkqhkiG9w0BAQsFAAOCAQEAhiEMFFryP9wg8f/3AcWye0gGT5PJzWfRK4ptYrAQbE5sDKpbYYnAP05GtN8tLZEtupinQh24jz6t222vFkJXEwlS+iQ5jBfgLQIhtaGYHgxEfacsYTLRKUZHK+dcsXxfX4F+kw8tuyl00JWH3sRWvvQ/BH5rghntjGA5IEn/Flc9qZsOlJFdGe4ePSSkgbrxM09VlTRZPhS7LoZuTDOumnw3OoPEhLRu2lO0/R9jyYLEJQiHERChUiiK2YLWZf9kmdLPe1WK5wbf0h4Wd9elqKjCmUn42ESHtUSpVRBssHekgT6+Hjuu7yVXts4xLIhIBCPlSNZ9W29CVww8YMfpzg==","attributes":{"enabled":true,"nbf":1579657580,"exp":1611280580,"created":1579658180,"updated":1579658180,"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":1579658162,"updated":1579658162}},"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 01:56:24 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-22T01:55:23Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:25 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-22T01:55:23Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:25 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/demo-5419170317012020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault541917031701","name":"KeyVault541917031701","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo-6033490122012020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault603349012201","name":"KeyVault603349012201","type":"Microsoft.KeyVault/vaults","location":"southcentralus","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/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/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/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/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/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":{}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '14551'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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=2018-02-14
+ 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 01:56:26 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/712e4ba9347c4bcb88a05b1864fdd4d7?api-version=7.0
+ response:
+ body:
+ string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAj6XjzuO8aljAICB9AEggTYlJFY1c1G3k6emLWH9lBuwl/yt1KeqvCODxkrh8/Rj1lhONZ2EUYH1ZG02SpTl2sFCrDjA6ihs0CJngzhx3zvX6unRXZebMrKLsOycdPNno2v3locueD2A+GrCiT4M7iUQMJlw18MDmSDJAX6Ce1RSDLvfK9amz7SoerP7ANW1IaxGteyR0p26DGbJRQoKwRM4FVJMxGk1KJI+vsYjWeiOAT2DgcQ3VSfCMCIbK2xjDtcvsDWO00LX+0ZQzcXmiRRAee3hLZijgONZFlyh6fT//PDrlJply8X3k94Y1W4W+Jx/lLW+digrUkzMLIrc4f/jUyEG5Q+JxXurwL7DAv2PqGBCCmp3kIT/o7T3pMRK9mXNkCSmxQWrxunvso5HWwiwVn2lnPRYWnAlm2JvW1NSDlUnE3mzFxT9uL0zC8zox86yo2WqNJVoMt7qIlZYmhnqB6EgjswmkXTarriwyqwNq74Y34HExXS2qee/VMcDYnKIEXcyV9mZxmnCkZGQMTWrQR7YZejmScMXzW9VmlndzyZmkVak0DC3BW2MpG5tAw24Npw2ybiNRBV3y4YLd8KCYxeiy4JAbKsiH2yUJUtdGeRhO0O7PAyW19dOLpE/ZndpjsU2JJtJI5Wsj5fzP43sIPwMYXF9TysF6Rj/zIoYXCg9eP2AlJs8r+ltVaKv/mGSplZxLDg4ejIcRgBPDh/mrNTjfnIxpEeq67OYKjyifjlKmVdVicO7l0RMG07FyjJEAU0UPlYtjV6ZAvwNQnv5hUPUIED+HLgbjqTbWW/5GEmcjdcwD9c6mP8joBkMjivtMRAICrGstNXFGiYcKkO/RrJrnFQAMbs49pP/13oh5Hbmz/R1o1ymgca8dkktpn1MWqqDoP6WYdJWh/Dyb3jMBKFDF6RrCm9kYwmS5LSKpCCVKLB7w9a9zZ4rA5+96hgVHItbKxFWxMW701MS4kuvBrjDMqh881D7KvrmCa1cRRanWq3UIGzlEz7aNON81Iu71ZobLIYOHHH24Ui62ZXsw694xVbmfVKAzXsUpEguJtqpFQN+lOW9tmRVpxpera9QUofD77R/XExgIdsaDZBRgVJW/ryWYHaqMbnYRVqzky2KWRadI/Qcy5pH6oBiKcPcOLCjRl3XYpMpVduUkI4mwvWdqQTc8LSuWIn+yDHCRXjCzwXyyCfCjYzSEcR3vc70nTl6EFICwEa1bwWa3aObRNlS7WrfFhopSZ4MRAQKubD59czDi2D+KbDFhuq1a+DWdEeRMB5MelFwmsGFmcVTWwPDK+DtB+Oe2GK5Pwa79+he/8DBjaaqw/9g6r3VqafHgfQr+1ShBDPxVidBEdVZHUhHU/GIp+fjyUneGosEdjhvxaieqwCUlK6w+0xrhb1zwn8gJ5xzQrMRPeYkRmbKPLfpxiTsnlOW9EYPdduHHPEm/loDuIttVBFn3MVRLjtbc5rqgYNNW/0tDVGATT4a3o+uNxozPa0KYaRJndqSb4eTKEDoqX7Va5mBqStp1vXDBlr5sRfDLtvKT99258x9CAunXdmfxFdPKsWIrzcmQ46GX5Nlb9SnDJjOg9DlqPHm1x2hxy8Noayj7bvLfhHCDqoK2+8ZXp2jHBeC1w8aa7QLIPu/qe/+pTv5YtFLyQ3arbkAE1giTGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADUAYgBkADgAMQAyADAAYgAtADMANgA5AGMALQA0ADMANwBiAC0AYQAwAGMANQAtADEAMAA0AGEAZQA0ADgAMgAwADkAYQA1MHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAi3qo5xx5MEbQICB9CAggOQKRze8YN0ekOkflggLqr0OVCbFjAIPdV+CHqxP4ThOKQE3uMPty3J9EfkO02rapSGXNIVI4ZslIEo575LKA2xgt70wFSccb7Ys7m2MNH2jLoRO1quYRUWdjyKQ4jNMmCTr+iPesq8P2wvxyi2VmaNHseaRK91neuw/kdCpVqncgVK3UPgew2fquyhX01B/FmFCGc4awJKWQCsY4DfW25OYiBLeMbW7OTSQGaHwxjMzmcGAzZrxGsP1kMg3OUzxuBeqZ5/xoN21TCRZeIhndBZUoMC6mi9UF3TZ7S37V4u2W6xHnbgyag/TSXsMewR1kR0a7c7r4xc9O7CsXNQNaLeRU+c5WLTY8Pt2WYNjTIz7LSXymPajk2sVO7aL4vjoum89DWM08KT2Yivpph0UE5btjigMSPE7h917kadE0wjwtEe8NhQO/W3LDP1isG/+v9ji65e7QKM8cpuM+iXN5AM+QzZ/GMjH2XUSYrmIlVYDgH5e94hAVBqjnJWU4TU2jXl3Daq+KmM8ggxpWza2w9o27xTpVeJG6W8MyVdYSC3FOtxjXAL9O9Ci4UcGcvsDRhuhnLOc8QnwYP641Yb5UaP9XUcrMdCx3DO0UqAFvfl65EV8StUjc4bRV6Wc7zU6sSorj7kfx4xcJaQgmD1GkM4yDyFbwiIEfWG8l0EbI8KxSpWXA7hvzOCUZVgdrIhtuDWcZFTsSXP0nUly77dyAxbp2dRyjjBj2dJxI3x3XR3PuZcxSH8gs4awX4aJpWqtxSP59WJD+cEoN9AjjQFwexYw+O99u6yGtpxJC84rgBrK5GTjfnK2GT0YclD6jcD9Ugp8ukvJmySZrtuUUMiPL2IVi9tboIAKjWMo1mJJbMSXqcY+BiyWC1t92X1s7OGZ/LPPFnJ1u6HB4LBBUmj+v3na8SqHk+RIx0mHcvR4TZYG0Vo8lqydwv1jVMBIOe6VfcOhiClKbk9GL07OAjbfsC5ihRXWeIl7hdHuHmAP0nZhBfQRfUTm7QE5u7al974+Ch5nboKGgX0bx7JzetoO01XIt1WkPjNX277NbSzObqPYSH8UPq3rqD5wSXH3zD9RR+IhLE9NXvlwTAeTqjl36nnCj5RoD3up/hjn7UMe2F8+g7glP226EkBdzGkXWXtYck8++aWHmXPKiSrIAs7RuLsvLvKPHrEEwvbcL3SEY4gugAVQ6o4GLc4zUPUA9nVW7LzMDcwHzAHBgUrDgMCGgQUfu1n/YOVnRDnGnjhY8nhcm41XTMEFJq69x6sHLkDlV/IhouBnAg7wSiG","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/712e4ba9347c4bcb88a05b1864fdd4d7","managed":true,"attributes":{"enabled":true,"nbf":1579657580,"exp":1611280580,"created":1579658180,"updated":1579658180,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/712e4ba9347c4bcb88a05b1864fdd4d7"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3960'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:26 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":
+ "E620D6AF4A58F0945D5D06778CAA215E113112DA"}, "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/712e4ba9347c4bcb88a05b1864fdd4d7"},
+ "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-202001211756","name":"AzurePSDeployment-202001211756","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":"E620D6AF4A58F0945D5D06778CAA215E113112DA"},"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/712e4ba9347c4bcb88a05b1864fdd4d7"},"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-22T01:56:23.0007199Z","duration":"PT0S","correlationId":"91f4eabd-ebd2-4c7c-8abe-a6f4054b1f88","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/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/a2wjyals4we6e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"a2wjyals4we6e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2","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/a2wjyals4we6e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"a2wjyals4we6e3","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/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2","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/sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/a2wjyals4we6e3"},{"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 01:56:23 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":
+ "E620D6AF4A58F0945D5D06778CAA215E113112DA"}, "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/712e4ba9347c4bcb88a05b1864fdd4d7"},
+ "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-202001211756","name":"AzurePSDeployment-202001211756","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":"E620D6AF4A58F0945D5D06778CAA215E113112DA"},"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/712e4ba9347c4bcb88a05b1864fdd4d7"},"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-22T01:56:29.4068615Z","duration":"PT0.867457S","correlationId":"6f2b4c0c-ce9b-46fb-a457-557b05efb723","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/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/a2wjyals4we6e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"a2wjyals4we6e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2","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/a2wjyals4we6e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"a2wjyals4we6e3","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/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2","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-202001211756/operationStatuses/08586219486969382848?api-version=2019-07-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '7190'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 01:56:29 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/08586219486969382848?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 01:56:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/08586219486969382848?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 01:57:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --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/08586219486969382848?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 01:57:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/08586219486969382848?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 01:58:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --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/08586219486969382848?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 01:58:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/08586219486969382848?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 01:59:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --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/08586219486969382848?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 01:59:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/08586219486969382848?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 02:00:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --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/08586219486969382848?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 02:00:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/08586219486969382848?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 02:01:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --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/08586219486969382848?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 02:01:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/08586219486969382848?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 02:02:30 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/08586219486969382848?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 02:02:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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-202001211756","name":"AzurePSDeployment-202001211756","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":"E620D6AF4A58F0945D5D06778CAA215E113112DA"},"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/712e4ba9347c4bcb88a05b1864fdd4d7"},"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-22T02:02:41.4041743Z","duration":"PT6M12.8647698S","correlationId":"6f2b4c0c-ce9b-46fb-a457-557b05efb723","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/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/a2wjyals4we6e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"a2wjyals4we6e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2","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/a2wjyals4we6e3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"a2wjyals4we6e3","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/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsa2wjyals4we6e2","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":"dd19ad06-bd62-4de6-8054-62884e031001","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/dd19ad06-bd62-4de6-8054-62884e031001","certificate":{"thumbprint":"E620D6AF4A58F0945D5D06778CAA215E113112DA","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":"sflogsa2wjyals4we6e2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsa2wjyals4we6e2.blob.core.windows.net/","queueEndpoint":"https://sflogsa2wjyals4we6e2.queue.core.windows.net/","tableEndpoint":"https://sflogsa2wjyals4we6e2.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/a2wjyals4we6e3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsa2wjyals4we6e2"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '10394'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 02:02:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - 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/\\\"637152550718733498\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"dd19ad06-bd62-4de6-8054-62884e031001\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/dd19ad06-bd62-4de6-8054-62884e031001\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"E620D6AF4A58F0945D5D06778CAA215E113112DA\",\r\n
+ \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
+ [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
+ [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
+ [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n
+ \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n
+ \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\":
+ \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n
+ \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\":
+ 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\":
+ {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n
+ \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
+ 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
+ \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
+ {\r\n \"storageAccountName\": \"sflogsa2wjyals4we6e2\",\r\n \"primaryAccessKey\":
+ \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsa2wjyals4we6e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsa2wjyals4we6e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsa2wjyals4we6e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
+ \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
+ \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
+ \ }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2736'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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/\\\"637152550718733498\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"dd19ad06-bd62-4de6-8054-62884e031001\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/dd19ad06-bd62-4de6-8054-62884e031001\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"E620D6AF4A58F0945D5D06778CAA215E113112DA\",\r\n
+ \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
+ [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
+ [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
+ [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n
+ \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n
+ \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\":
+ \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n
+ \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\":
+ 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\":
+ {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n
+ \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
+ 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
+ \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
+ {\r\n \"storageAccountName\": \"sflogsa2wjyals4we6e2\",\r\n \"primaryAccessKey\":
+ \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsa2wjyals4we6e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsa2wjyals4we6e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsa2wjyals4we6e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
+ \ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
+ \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
+ \ }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2736'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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 application-type list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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 application-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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: '{}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152553833693421\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '493'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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
+ 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 application-type show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152553833693421\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '493'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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 application-type delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp?api-version=2019-03-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ date:
+ - Wed, 22 Jan 2020 02:03:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\":
+ \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RGRIUQXJRYFGKLK2DBAI3Q3SSHD6DQL5MMVQ4WDAXSBFOHD4LE7ZU73VTNXEH5DRWP2/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-3IHN3UH2AS35AVW/applicationTypes/CALCSERVICEAPP
+ not found.\",\r\n \"details\": []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '349'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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: '{}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152553864323626\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '493'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03: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: '{"properties": {"appPackageUrl": "https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '119'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152553867292279\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg\",\r\n
+ \ \"defaultParameterList\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '644'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:03:06 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ 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-subscription-writes:
+ - '1197'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:04: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:04: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:05: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:05: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:06: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:06: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:07: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:07: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:08: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:08: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:09: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:09: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:10:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\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 02:10: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:11: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:11: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:12: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/784b6585-5a27-4c3f-95dc-5170f92b364c?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n
+ \ \"name\": \"784b6585-5a27-4c3f-95dc-5170f92b364c\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:03:06.7292279Z\",\r\n \"endTime\": \"2020-01-22T02:12:34.5099165Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:12: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152553867292279\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:12: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 application-type version show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152553867292279\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:12: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 application-type version delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c --application-type-name --version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6b761482-f393-4bb7-a15e-c172a638b2cd?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Wed, 22 Jan 2020 02:12:39 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/6b761482-f393-4bb7-a15e-c172a638b2cd?api-version=2019-03-01
+ 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-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/6b761482-f393-4bb7-a15e-c172a638b2cd?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6b761482-f393-4bb7-a15e-c172a638b2cd\",\r\n
+ \ \"name\": \"6b761482-f393-4bb7-a15e-c172a638b2cd\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:12:39.6082772Z\",\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 02:13: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 application-type version delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/6b761482-f393-4bb7-a15e-c172a638b2cd?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6b761482-f393-4bb7-a15e-c172a638b2cd\",\r\n
+ \ \"name\": \"6b761482-f393-4bb7-a15e-c172a638b2cd\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:12:39.6082772Z\",\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 02:14: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 application-type version delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/6b761482-f393-4bb7-a15e-c172a638b2cd?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6b761482-f393-4bb7-a15e-c172a638b2cd\",\r\n
+ \ \"name\": \"6b761482-f393-4bb7-a15e-c172a638b2cd\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:12:39.6082772Z\",\r\n \"endTime\": \"2020-01-22T02:14:34.5105409Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:14: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 application-type version show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\":
+ \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RGRIUQXJRYFGKLK2DBAI3Q3SSHD6DQL5MMVQ4WDAXSBFOHD4LE7ZU73VTNXEH5DRWP2/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-3IHN3UH2AS35AVW/applicationTypes/CALCSERVICEAPP/versions/1.0
+ not found.\",\r\n \"details\": []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '362'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:14:41 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
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:14: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\":
+ \"W/\\\"637152553864323626\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '562'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:14: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:14:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"appPackageUrl": "https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '119'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152560825111817\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg\",\r\n
+ \ \"defaultParameterList\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '644'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:14:41 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ 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-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n
+ \ \"name\": \"7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:14:42.5111817Z\",\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 02:15: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n
+ \ \"name\": \"7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:14:42.5111817Z\",\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 02:16: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n
+ \ \"name\": \"7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:14:42.5111817Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:16: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n
+ \ \"name\": \"7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:14:42.5111817Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:17: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7cc567b4-0bda-441a-843c-f57d7d29c822?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n
+ \ \"name\": \"7cc567b4-0bda-441a-843c-f57d7d29c822\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:14:42.5111817Z\",\r\n \"endTime\": \"2020-01-22T02:17:34.665885Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '365'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:17: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/applicationTypes/CalcServiceApp/versions/1.0?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152560825111817\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:17: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": []\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '19'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:17: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: '{"properties": {"typeVersion": "1.0", "parameters": {"Mode": "binary"},
+ "typeName": "CalcServiceApp"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '102'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7e4ebf65-502b-4417-b831-c443f47aeb94?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '634'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:17:43 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/7e4ebf65-502b-4417-b831-c443f47aeb94?api-version=2019-03-01
+ 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-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7e4ebf65-502b-4417-b831-c443f47aeb94?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7e4ebf65-502b-4417-b831-c443f47aeb94\",\r\n
+ \ \"name\": \"7e4ebf65-502b-4417-b831-c443f47aeb94\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:17:43.7330824Z\",\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 02:18: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7e4ebf65-502b-4417-b831-c443f47aeb94?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7e4ebf65-502b-4417-b831-c443f47aeb94\",\r\n
+ \ \"name\": \"7e4ebf65-502b-4417-b831-c443f47aeb94\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:17:43.7330824Z\",\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 02:19: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/7e4ebf65-502b-4417-b831-c443f47aeb94?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7e4ebf65-502b-4417-b831-c443f47aeb94\",\r\n
+ \ \"name\": \"7e4ebf65-502b-4417-b831-c443f47aeb94\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:17:43.7330824Z\",\r\n \"endTime\": \"2020-01-22T02:19:34.6942236Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:19: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 application create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-name --application-type-version
+ --package-url --application-parameters
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:19: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 application show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:19: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: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
+ "contentVersion": "1.0.0.0", "parameters": {"applicationName": {"type": "string",
+ "metadata": {"description": "The application name"}}, "clusterName": {"type":
+ "string", "metadata": {"description": "Name of your cluster - Between 3 and
+ 23 characters. Letters and numbers only"}}, "serviceKind": {"type": "string",
+ "defaultValue": "Stateless", "metadata": {"description": "The service kind.
+ Stateless or Stateful"}}, "serviceName": {"type": "string", "defaultValue":
+ "AzureFileVolumePlugin2~Service", "metadata": {"description": "The service name"}},
+ "serviceTypeName": {"type": "string", "defaultValue": "AzureFilesVolumePluginServiceType",
+ "metadata": {"description": "The service type name"}}, "partitionScheme": {"type":
+ "string", "defaultValue": "Singleton", "metadata": {"description": "Partition
+ Scheme."}}, "partitionDescription": {"type": "object"}, "instanceCount": {"type":
+ "int"}}, "resources": [{"apiVersion": "2019-03-01", "type": "Microsoft.ServiceFabric/clusters/applications/services",
+ "name": "[concat(parameters(''clusterName''), ''/'', parameters(''applicationName''),
+ ''/'', parameters(''serviceName''))]", "properties": {"serviceKind": "[parameters(''serviceKind'')]",
+ "serviceTypeName": "[parameters(''serviceTypeName'')]", "partitionDescription":
+ "[parameters(''partitionDescription'')]", "correlationScheme": [], "serviceLoadMetrics":
+ [], "servicePlacementPolicies": [], "instanceCount": "[parameters(''instanceCount'')]"}}]},
+ "parameters": {"clusterName": {"value": "sfrp-cli-000004"}, "applicationName":
+ {"value": "testApp000006"}, "serviceName": {"value": "testApp000006~testService"},
+ "serviceTypeName": {"value": "CalcServiceType"}, "partitionDescription": {"value":
+ {"partitionScheme": "Singleton"}}, "instanceCount": {"value": -1}}, "mode":
+ "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1895'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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-202001211819","name":"AzurePSDeployment-202001211819","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17171238564262146892","parameters":{"applicationName":{"type":"String","value":"testApp000006"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"serviceKind":{"type":"String","value":"Stateless"},"serviceName":{"type":"String","value":"testApp000006~testService"},"serviceTypeName":{"type":"String","value":"CalcServiceType"},"partitionScheme":{"type":"String","value":"Singleton"},"partitionDescription":{"type":"Object","value":{"partitionScheme":"Singleton"}},"instanceCount":{"type":"Int","value":-1}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-22T02:19:45.2040098Z","duration":"PT0S","correlationId":"69ad273f-b215-4151-87a0-f73aca38bc93","providers":[{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters/applications/services","locations":[null]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006/services/testApp000006~testService"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1486'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 02:19:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
+ "contentVersion": "1.0.0.0", "parameters": {"applicationName": {"type": "string",
+ "metadata": {"description": "The application name"}}, "clusterName": {"type":
+ "string", "metadata": {"description": "Name of your cluster - Between 3 and
+ 23 characters. Letters and numbers only"}}, "serviceKind": {"type": "string",
+ "defaultValue": "Stateless", "metadata": {"description": "The service kind.
+ Stateless or Stateful"}}, "serviceName": {"type": "string", "defaultValue":
+ "AzureFileVolumePlugin2~Service", "metadata": {"description": "The service name"}},
+ "serviceTypeName": {"type": "string", "defaultValue": "AzureFilesVolumePluginServiceType",
+ "metadata": {"description": "The service type name"}}, "partitionScheme": {"type":
+ "string", "defaultValue": "Singleton", "metadata": {"description": "Partition
+ Scheme."}}, "partitionDescription": {"type": "object"}, "instanceCount": {"type":
+ "int"}}, "resources": [{"apiVersion": "2019-03-01", "type": "Microsoft.ServiceFabric/clusters/applications/services",
+ "name": "[concat(parameters(''clusterName''), ''/'', parameters(''applicationName''),
+ ''/'', parameters(''serviceName''))]", "properties": {"serviceKind": "[parameters(''serviceKind'')]",
+ "serviceTypeName": "[parameters(''serviceTypeName'')]", "partitionDescription":
+ "[parameters(''partitionDescription'')]", "correlationScheme": [], "serviceLoadMetrics":
+ [], "servicePlacementPolicies": [], "instanceCount": "[parameters(''instanceCount'')]"}}]},
+ "parameters": {"clusterName": {"value": "sfrp-cli-000004"}, "applicationName":
+ {"value": "testApp000006"}, "serviceName": {"value": "testApp000006~testService"},
+ "serviceTypeName": {"value": "CalcServiceType"}, "partitionDescription": {"value":
+ {"partitionScheme": "Singleton"}}, "instanceCount": {"value": -1}}, "mode":
+ "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1895'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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-202001211819","name":"AzurePSDeployment-202001211819","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17171238564262146892","parameters":{"applicationName":{"type":"String","value":"testApp000006"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"serviceKind":{"type":"String","value":"Stateless"},"serviceName":{"type":"String","value":"testApp000006~testService"},"serviceTypeName":{"type":"String","value":"CalcServiceType"},"partitionScheme":{"type":"String","value":"Singleton"},"partitionDescription":{"type":"Object","value":{"partitionScheme":"Singleton"}},"instanceCount":{"type":"Int","value":-1}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-22T02:19:46.0725603Z","duration":"PT0.3388849S","correlationId":"8d4bd1a6-27ea-4564-bd69-fb972df46f8f","providers":[{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters/applications/services","locations":[null]}]}],"dependencies":[]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202001211819/operationStatuses/08586219472997439467?api-version=2019-07-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1192'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 02:19:45 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 service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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/08586219472997439467?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 02:20:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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/08586219472997439467?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 02:20:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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/08586219472997439467?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 02:21:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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/08586219472997439467?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 02:21:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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/08586219472997439467?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 02:22:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ 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-202001211819","name":"AzurePSDeployment-202001211819","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17171238564262146892","parameters":{"applicationName":{"type":"String","value":"testApp000006"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"serviceKind":{"type":"String","value":"Stateless"},"serviceName":{"type":"String","value":"testApp000006~testService"},"serviceTypeName":{"type":"String","value":"CalcServiceType"},"partitionScheme":{"type":"String","value":"Singleton"},"partitionDescription":{"type":"Object","value":{"partitionScheme":"Singleton"}},"instanceCount":{"type":"Int","value":-1}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-22T02:22:01.4144975Z","duration":"PT2M15.6808221S","correlationId":"8d4bd1a6-27ea-4564-bd69-fb972df46f8f","providers":[{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters/applications/services","locations":[null]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006/services/testApp000006~testService"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 22 Jan 2020 02:22:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --state --instance-count -1 --service-name --service-type
+ --partition-scheme
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006/services/testApp000006~testService?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"services\",\r\n \"location\": \"westus\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006/services/testApp000006~testService\",\r\n
+ \ \"name\": \"testApp000006~testService\",\r\n \"tags\": {},\r\n \"etag\":
+ \"W/\\\"637152564005849085\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"placementConstraints\":
+ \"\",\r\n \"serviceTypeName\": \"CalcServiceType\",\r\n \"partitionDescription\":
+ {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"serviceLoadMetrics\":
+ [],\r\n \"servicePlacementPolicies\": [],\r\n \"instanceCount\": -1\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '767'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:22:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf service show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --service-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006/services/testApp000006~testService?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"services\",\r\n \"location\": \"westus\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006/services/testApp000006~testService\",\r\n
+ \ \"name\": \"testApp000006~testService\",\r\n \"tags\": {},\r\n \"etag\":
+ \"W/\\\"637152564005849085\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\r\n \"placementConstraints\":
+ \"\",\r\n \"serviceTypeName\": \"CalcServiceType\",\r\n \"partitionDescription\":
+ {\r\n \"partitionScheme\": \"Singleton\"\r\n },\r\n \"serviceLoadMetrics\":
+ [],\r\n \"servicePlacementPolicies\": [],\r\n \"instanceCount\": -1\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '767'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:22: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\":
+ \"W/\\\"637152553864323626\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '562'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:22: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.0\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152560825111817\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"appPackageUrl\": \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n
+ \ }\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '761'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:22: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: '{"properties": {"appPackageUrl": "https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '119'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/632f3cd6-f629-4200-8f45-acc07d8f3263?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '644'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:22:18 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/632f3cd6-f629-4200-8f45-acc07d8f3263?api-version=2019-03-01
+ 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-subscription-writes:
+ - '1198'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/632f3cd6-f629-4200-8f45-acc07d8f3263?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n
+ \ \"name\": \"632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:22:18.5860098Z\",\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 02:23: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/632f3cd6-f629-4200-8f45-acc07d8f3263?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n
+ \ \"name\": \"632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:22:18.5860098Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:23: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/632f3cd6-f629-4200-8f45-acc07d8f3263?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n
+ \ \"name\": \"632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
+ \ \"startTime\": \"2020-01-22T02:22:18.5860098Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '419'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/632f3cd6-f629-4200-8f45-acc07d8f3263?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n
+ \ \"name\": \"632f3cd6-f629-4200-8f45-acc07d8f3263\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:22:18.5860098Z\",\r\n \"endTime\": \"2020-01-22T02:24:34.7333125Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application-type version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name --version --package-url
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applicationTypes/versions\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp/versions/1.1\",\r\n
+ \ \"name\": \"1.1\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152565385860098\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
+ \"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg\",\r\n
+ \ \"defaultParameterList\": {\r\n \"mode\": \"decimal\"\r\n }\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '676'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330824\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.0\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"binary\"\r\n },\r\n \"removeApplicationCapacity\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '635'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24: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: '{"location": "westus", "tags": {}, "properties": {"typeVersion": "1.1",
+ "parameters": {"Mode": "decimal"}, "upgradePolicy": {"upgradeReplicaSetCheckTimeout":
+ "00:05:00", "forceRestart": true, "rollingUpgradeMonitoringPolicy": {"failureAction":
+ "Rollback", "healthCheckWaitDuration": "00:00:00", "healthCheckStableDuration":
+ "00:00:00", "healthCheckRetryTimeout": "00:00:00", "upgradeTimeout": "01:56:40",
+ "upgradeDomainTimeout": "01:23:20"}, "applicationHealthPolicy": {"considerWarningAsError":
+ false, "maxPercentUnhealthyDeployedApplications": 0, "defaultServiceTypeHealthPolicy":
+ {}}}, "removeApplicationCapacity": false, "typeName": "CalcServiceApp"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '655'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1424'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:24:51 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ 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-subscription-writes:
+ - '1198'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\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 02:25: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\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 02:26: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '528'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:26:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '528'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:27: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"0\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '529'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:27: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"0\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '529'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:28: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"1\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '529'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:28: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"1\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '529'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:29: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"2\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '529'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:29: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"InProgress:{\\r\\n
+ \ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
+ {\\r\\n \\\"UpgradeDomainName\\\": \\\"2\\\",\\r\\n \\\"NodeProgressList\\\":
+ []\\r\\n }\\r\\n}\",\r\n \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n
+ \ \"endTime\": \"0001-01-01T00:00:00\",\r\n \"percentComplete\": 0.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '529'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/768cce30-e49a-4927-8e07-cdde6d709e17?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n
+ \ \"name\": \"768cce30-e49a-4927-8e07-cdde6d709e17\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:24:51.9546716Z\",\r\n \"endTime\": \"2020-01-22T02:30:34.8120136Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --application-type-version --application-parameters
+ --health-check-stable-duration --health-check-wait-duration --health-check-retry-timeout
+ --upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
+ --force-restart
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330825\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"removeApplicationCapacity\":
+ false,\r\n \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n
+ \ \"considerWarningAsError\": false,\r\n \"maxPercentUnhealthyDeployedApplications\":
+ 0,\r\n \"defaultServiceTypeHealthPolicy\": {\r\n \"maxPercentUnhealthyServices\":
+ 0,\r\n \"maxPercentUnhealthyPartitionsPerService\": 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\":
+ 0\r\n }\r\n },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n
+ \ \"failureAction\": \"Rollback\",\r\n \"healthCheckRetryTimeout\":
+ \"00:00:00\",\r\n \"healthCheckWaitDuration\": \"00:00:00\",\r\n \"healthCheckStableDuration\":
+ \"00:00:00\",\r\n \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1425'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30: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: '{"location": "westus", "tags": {}, "properties": {"typeVersion": "1.1",
+ "parameters": {"Mode": "decimal"}, "upgradePolicy": {"upgradeReplicaSetCheckTimeout":
+ "00:05:00", "forceRestart": true, "rollingUpgradeMonitoringPolicy": {"failureAction":
+ "Rollback", "healthCheckWaitDuration": "00:00:00", "healthCheckStableDuration":
+ "00:00:00", "healthCheckRetryTimeout": "00:00:00", "upgradeTimeout": "01:56:40",
+ "upgradeDomainTimeout": "01:23:20"}, "applicationHealthPolicy": {"considerWarningAsError":
+ false, "maxPercentUnhealthyDeployedApplications": 0, "defaultServiceTypeHealthPolicy":
+ {"maxPercentUnhealthyServices": 0, "maxPercentUnhealthyPartitionsPerService":
+ 0, "maxPercentUnhealthyReplicasPerPartition": 0}}}, "minimumNodes": 1, "maximumNodes":
+ 3, "removeApplicationCapacity": false, "typeName": "CalcServiceApp"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '817'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.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.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330826\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"maximumNodes\": 3,\r\n
+ \ \"minimumNodes\": 1,\r\n \"removeApplicationCapacity\": false,\r\n
+ \ \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\":
+ false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\":
+ {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\":
+ 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n }\r\n
+ \ },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\":
+ \"Rollback\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"healthCheckWaitDuration\":
+ \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n
+ \ \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\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/d212bc04-9ecb-4099-9038-99963e5b35b8?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1472'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:30:55 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/d212bc04-9ecb-4099-9038-99963e5b35b8?api-version=2019-03-01
+ 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-subscription-writes:
+ - '1197'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/d212bc04-9ecb-4099-9038-99963e5b35b8?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d212bc04-9ecb-4099-9038-99963e5b35b8\",\r\n
+ \ \"name\": \"d212bc04-9ecb-4099-9038-99963e5b35b8\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:30:55.9649432Z\",\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 02: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/d212bc04-9ecb-4099-9038-99963e5b35b8?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d212bc04-9ecb-4099-9038-99963e5b35b8\",\r\n
+ \ \"name\": \"d212bc04-9ecb-4099-9038-99963e5b35b8\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:30:55.9649432Z\",\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 02: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/d212bc04-9ecb-4099-9038-99963e5b35b8?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d212bc04-9ecb-4099-9038-99963e5b35b8\",\r\n
+ \ \"name\": \"d212bc04-9ecb-4099-9038-99963e5b35b8\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:30:55.9649432Z\",\r\n \"endTime\": \"2020-01-22T02:32:34.8415033Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02: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 application update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name --minimum-nodes --maximum-nodes
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330826\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"maximumNodes\": 3,\r\n
+ \ \"minimumNodes\": 1,\r\n \"removeApplicationCapacity\": false,\r\n
+ \ \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\":
+ false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\":
+ {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\":
+ 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n }\r\n
+ \ },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\":
+ \"Rollback\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"healthCheckWaitDuration\":
+ \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n
+ \ \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1473'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02: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 application show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications\",\r\n
+ \ \"location\": \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637152562637330826\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
+ \"CalcServiceApp\",\r\n \"typeVersion\": \"1.1\",\r\n \"parameters\":
+ {\r\n \"Mode\": \"decimal\"\r\n },\r\n \"maximumNodes\": 3,\r\n
+ \ \"minimumNodes\": 1,\r\n \"removeApplicationCapacity\": false,\r\n
+ \ \"upgradePolicy\": {\r\n \"applicationHealthPolicy\": {\r\n \"considerWarningAsError\":
+ false,\r\n \"maxPercentUnhealthyDeployedApplications\": 0,\r\n \"defaultServiceTypeHealthPolicy\":
+ {\r\n \"maxPercentUnhealthyServices\": 0,\r\n \"maxPercentUnhealthyPartitionsPerService\":
+ 0,\r\n \"maxPercentUnhealthyReplicasPerPartition\": 0\r\n }\r\n
+ \ },\r\n \"rollingUpgradeMonitoringPolicy\": {\r\n \"failureAction\":
+ \"Rollback\",\r\n \"healthCheckRetryTimeout\": \"00:00:00\",\r\n \"healthCheckWaitDuration\":
+ \"00:00:00\",\r\n \"healthCheckStableDuration\": \"00:00:00\",\r\n
+ \ \"upgradeDomainTimeout\": \"01:23:20\",\r\n \"upgradeTimeout\":
+ \"01:56:40\"\r\n },\r\n \"upgradeReplicaSetCheckTimeout\": \"00:05:00\",\r\n
+ \ \"forceRestart\": true\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1473'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02: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 application delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/1441ab3b-45b5-49a0-9b50-4dba327d3eab?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Wed, 22 Jan 2020 02:32:57 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/1441ab3b-45b5-49a0-9b50-4dba327d3eab?api-version=2019-03-01
+ 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-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/1441ab3b-45b5-49a0-9b50-4dba327d3eab?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/1441ab3b-45b5-49a0-9b50-4dba327d3eab\",\r\n
+ \ \"name\": \"1441ab3b-45b5-49a0-9b50-4dba327d3eab\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:32:57.6298881Z\",\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 02: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 application delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/1441ab3b-45b5-49a0-9b50-4dba327d3eab?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/1441ab3b-45b5-49a0-9b50-4dba327d3eab\",\r\n
+ \ \"name\": \"1441ab3b-45b5-49a0-9b50-4dba327d3eab\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:32:57.6298881Z\",\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 02: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 application delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/1441ab3b-45b5-49a0-9b50-4dba327d3eab?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/1441ab3b-45b5-49a0-9b50-4dba327d3eab\",\r\n
+ \ \"name\": \"1441ab3b-45b5-49a0-9b50-4dba327d3eab\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:32:57.6298881Z\",\r\n \"endTime\": \"2020-01-22T02:34:34.8555136Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02: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 application-type delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes/CalcServiceApp?api-version=2019-03-01
+ response:
+ body:
+ string: ''
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/3ae1a026-a84f-4079-9631-3de70c23a467?api-version=2019-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Wed, 22 Jan 2020 02:34:59 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/3ae1a026-a84f-4079-9631-3de70c23a467?api-version=2019-03-01
+ 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-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf application-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/3ae1a026-a84f-4079-9631-3de70c23a467?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/3ae1a026-a84f-4079-9631-3de70c23a467\",\r\n
+ \ \"name\": \"3ae1a026-a84f-4079-9631-3de70c23a467\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:34:59.1846221Z\",\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 02: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 application-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/3ae1a026-a84f-4079-9631-3de70c23a467?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/3ae1a026-a84f-4079-9631-3de70c23a467\",\r\n
+ \ \"name\": \"3ae1a026-a84f-4079-9631-3de70c23a467\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-01-22T02:34:59.1846221Z\",\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 02: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 application-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-type-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-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/3ae1a026-a84f-4079-9631-3de70c23a467?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/3ae1a026-a84f-4079-9631-3de70c23a467\",\r\n
+ \ \"name\": \"3ae1a026-a84f-4079-9631-3de70c23a467\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-01-22T02:34:59.1846221Z\",\r\n \"endTime\": \"2020-01-22T02:36:34.9110231Z\",\r\n
+ \ \"percentComplete\": 100.0\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02: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 application show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --application-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications/testApp000006?api-version=2019-03-01
+ response:
+ body:
+ string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\":
+ \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RGRIUQXJRYFGKLK2DBAI3Q3SSHD6DQL5MMVQ4WDAXSBFOHD4LE7ZU73VTNXEH5DRWP2/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-3IHN3UH2AS35AVW/applications/TESTAPP2W5T
+ not found.\",\r\n \"details\": []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '342'
+ content-type:
+ - application/json
+ date:
+ - Wed, 22 Jan 2020 02:37:00 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
+ status:
+ code: 404
+ message: Not Found
+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
index da0a561a0fa..b4566684cb1 100644
--- 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
@@ -19,7 +19,7 @@ interactions:
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":"2019-11-28T10:29:37Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo
+ 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
@@ -27,8 +27,8 @@ interactions:
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":"CA","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_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu,
+ 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:
@@ -36,25 +36,25 @@ interactions:
cache-control:
- no-cache
content-length:
- - '16418'
+ - '16355'
content-type:
- application/json; odata=minimalmetadata; streaming=true; charset=utf-8
dataserviceversion:
- 3.0;
date:
- - Thu, 12 Dec 2019 00:49:20 GMT
+ - Wed, 22 Jan 2020 19:23:10 GMT
duration:
- - '1615458'
+ - '1432525'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - R24SEsKL6l8WwGja0LsRtb5gfSEzPaANsccbqgL6qjQ=
+ - YCeo6veNZzyqH4rqbg7XRrujjIhZ2D1Pk7fkPTQFub8=
ocp-aad-session-key:
- - Hp5SmY8q2JLLoXXXm4NJwmy9_wzikmAy10iJKHePeKLKjRwq1WU0XbBz1ZEq-oS4RKcMwGI8EOJvxafv6o8NZPH7FQ0h_pGT0g2tYolr1sfmxisDwe26yzksGwHOacXw.HzjM88_3VcuKrNtbgqJHZu_Atq4cOSYl5M21P41OwO0
+ - zW0CeTbX6kA7sbFFGmHumPq-WVn4hzqE98tkKNKrImPXpOdGJH3T3YyifrO0PS_j_7Y0i4js99t7U48Y5KGuuaev7kokMuCa6mcm1fyrDBRc8F-l-dZS9urQn1AHRFxg.f05cYfJin-VhA7HSd7vHIeq8Q2v9GTgUYMZ9-Spwyo8
pragma:
- no-cache
request-id:
- - 2ce3d8e0-8101-407c-b98c-16be3f8b51d6
+ - 64bdc8d2-87f6-41f8-8c6f-3119d5bf0370
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -94,7 +94,7 @@ interactions:
- --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.77
+ azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: PUT
@@ -110,7 +110,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:49:24 GMT
+ - Wed, 22 Jan 2020 19:23:12 GMT
expires:
- '-1'
pragma:
@@ -128,7 +128,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.0.268
+ - 1.1.0.269
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
x-powered-by:
@@ -151,7 +151,7 @@ interactions:
- --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.77
+ 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=2018-02-14
response:
@@ -165,7 +165,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:49:54 GMT
+ - Wed, 22 Jan 2020 19:23:42 GMT
expires:
- '-1'
pragma:
@@ -183,7 +183,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.0.268
+ - 1.1.0.269
x-powered-by:
- ASP.NET
status:
@@ -221,7 +221,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:49:55 GMT
+ - Wed, 22 Jan 2020 19:23:43 GMT
expires:
- '-1'
pragma:
@@ -238,11 +238,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -276,9 +276,9 @@ interactions:
uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/create?api-version=7.0
response:
body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"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":"e5a7ef9848e547ada70828f5ac21838a"}'
+ time based on the issuer provider. Please check again later.","request_id":"3f562d4bb9024ff585c162402cf9c26f"}'
headers:
cache-control:
- no-cache
@@ -287,11 +287,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:49:59 GMT
+ - 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=e5a7ef9848e547ada70828f5ac21838a
+ - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=3f562d4bb9024ff585c162402cf9c26f
pragma:
- no-cache
server:
@@ -303,11 +303,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -333,9 +333,9 @@ interactions:
uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0
response:
body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"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":"e5a7ef9848e547ada70828f5ac21838a"}'
+ time based on the issuer provider. Please check again later.","request_id":"3f562d4bb9024ff585c162402cf9c26f"}'
headers:
cache-control:
- no-cache
@@ -344,7 +344,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:49:59 GMT
+ - Wed, 22 Jan 2020 19:23:45 GMT
expires:
- '-1'
pragma:
@@ -358,11 +358,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -388,9 +388,9 @@ interactions:
uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0
response:
body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"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":"e5a7ef9848e547ada70828f5ac21838a"}'
+ time based on the issuer provider. Please check again later.","request_id":"3f562d4bb9024ff585c162402cf9c26f"}'
headers:
cache-control:
- no-cache
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:50:10 GMT
+ - Wed, 22 Jan 2020 19:23:55 GMT
expires:
- '-1'
pragma:
@@ -413,11 +413,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -443,227 +443,7 @@ interactions:
uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0
response:
body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","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":"e5a7ef9848e547ada70828f5ac21838a"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 Dec 2019 00:50:20 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.147.235;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.0.883
- 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","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":"e5a7ef9848e547ada70828f5ac21838a"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 Dec 2019 00:50:31 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.147.235;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.0.883
- 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","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":"e5a7ef9848e547ada70828f5ac21838a"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 Dec 2019 00:50:42 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.147.235;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.0.883
- 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","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":"e5a7ef9848e547ada70828f5ac21838a"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 12 Dec 2019 00:50:53 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.147.235;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.0.883
- 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCFyUf2g5WYArzi3/lt6foOS2+GG1ptZH97FKfIJgL3tlvfDmzKp9twRfkcOLayNKqbFHteu2I2bm75NeSkSiQMOcAVYGoX4COJe4evGRV5ISjmBAlrsfvNJcr193L5u2NC3xDuu94RhaBOZ44RBmdaoyIdQqc9/VsTMhL8rTBp4N9+EQACrUK3SEeueWjryWsuP6HLenGevF3xkTl7R3qVbl6k3sT876yrcxzPVeFZxfzSdQuRBubGGzuhs0J4gQpeH4xHgjqZBvX7IJSktMmJmn+zc6wNNnzmjfFVPS3e2IRIfn+snA2FSxxfhLt3Z2mxYUrNFOld/OzFvZCq2cq0","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"e5a7ef9848e547ada70828f5ac21838a"}'
+ 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
@@ -672,7 +452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:04 GMT
+ - Wed, 22 Jan 2020 19:24:06 GMT
expires:
- '-1'
pragma:
@@ -686,11 +466,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -716,7 +496,7 @@ interactions:
uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/?api-version=7.0
response:
body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","x5t":"ptQrWdNuuGtsLgAwFlcnsAe23sA","cer":"MIIDQjCCAiqgAwIBAgIQMqOV1s0ZS9O1NtRG1tWMcDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTE5MTIxMjAwNDA1NloXDTIwMTIxMjAwNTA1NlowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJ6vPZVWAcIh2U/B7NTv3eHjNuQmvayzvPNDSK4FPhOUNa5s+ycbGULNlaJEst0KNzId5pJpoDF0nMWCHh5e6yBPuk2lxQwOHpIwLUiaiZZ6SYRWrqPNDwHR3BWBBNMzbBtiPfOtVFy4Vnfx1KJY1QNIRVELM6AMFmZXI0SoSU3x4HoMwYiGI/NlDtOFOTC7JwD782I1kN4Hb0ZG8UVjpjJC0CflV7wBqqm9f8TXW+0m3ocwshHtu0p0L0hDbJysDrM8kWd2SUCfXlfuLceg/6LgBl1+3rIdA7olUmBGmkgBlgA6kYnQ84Y7tJ88e1Ieg9jy5HUeobZWdC4H8jUwt9sCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFPh8fxolpVQZmkT4NJi26+aJDojKMB0GA1UdDgQWBBT4fH8aJaVUGZpE+DSYtuvmiQ6IyjANBgkqhkiG9w0BAQsFAAOCAQEAT++7AhRGzXFEJv3e+EB3bE9dAzyg/V9A8MQgGKTW93fKWdjkU3UHOXYwpgprEtxSLzrnriFHlMGJ5+x+Ngi69l0jr4taGFaO/b9r856bCrY0tvsl/1uCzuj2qBR/7pH5y/fWfi27wgaNI7/pXzcyvZGrADtF4bvMMPqQLLum97ulTtA0mKQGE9Ozzc+5Rh8AleNj4Lj0Bn5qDMS6rsh4vECiBAZ/5uu7uWOlECu28vpVIiX4EBsXVB2HQLxcL0MnXmRDV/oWuA8iUyW6dvR1H0nkYEluDGfnIJ/AgVwaZCH/X9HvMGCn6K4wLv9ngqObDN13bHuKtH8qMDco9NuA/A==","attributes":{"enabled":true,"nbf":1576111256,"exp":1607734256,"created":1576111856,"updated":1576111856,"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":1576111798,"updated":1576111798}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/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
@@ -725,7 +505,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:04 GMT
+ - Wed, 22 Jan 2020 19:24:06 GMT
expires:
- '-1'
pragma:
@@ -739,11 +519,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -761,17 +541,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-22T19:23:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -780,7 +560,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:05 GMT
+ - Wed, 22 Jan 2020 19:24:07 GMT
expires:
- '-1'
pragma:
@@ -806,17 +586,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-22T19:23:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -825,7 +605,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:05 GMT
+ - Wed, 22 Jan 2020 19:24:07 GMT
expires:
- '-1'
pragma:
@@ -853,26 +633,27 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/alsantamclirg2/providers/Microsoft.KeyVault/vaults/alsantamclirg2","name":"alsantamclirg2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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/rmsfe2etest21207033128/providers/Microsoft.KeyVault/vaults/rmsfe2etest21207033128","name":"rmsfe2etest21207033128","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21208145422/providers/Microsoft.KeyVault/vaults/rmsfe2etest21208145422","name":"rmsfe2etest21208145422","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21209025714/providers/Microsoft.KeyVault/vaults/rmsfe2etest21209025714","name":"rmsfe2etest21209025714","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21209145447/providers/Microsoft.KeyVault/vaults/rmsfe2etest21209145447","name":"rmsfe2etest21209145447","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21210025355/providers/Microsoft.KeyVault/vaults/rmsfe2etest21210025355","name":"rmsfe2etest21210025355","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21210154648/providers/Microsoft.KeyVault/vaults/rmsfe2etest21210154648","name":"rmsfe2etest21210154648","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest21211032108/providers/Microsoft.KeyVault/vaults/rmsfe2etest21211032108","name":"rmsfe2etest21211032108","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sfrptest12101612107/providers/Microsoft.KeyVault/vaults/sfrptest12101612107kv","name":"sfrptest12101612107kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}}]}'
+ 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:
- - '2919'
+ - '15599'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:05 GMT
+ - Wed, 22 Jan 2020 19:24:08 GMT
expires:
- '-1'
pragma:
@@ -900,10 +681,10 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ azure-mgmt-keyvault/1.1.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
@@ -919,7 +700,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:05 GMT
+ - Wed, 22 Jan 2020 19:24:08 GMT
expires:
- '-1'
pragma:
@@ -937,7 +718,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.0.268
+ - 1.1.0.269
x-powered-by:
- ASP.NET
status:
@@ -960,19 +741,19 @@ interactions:
accept-language:
- en-US
method: GET
- uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d?api-version=7.0
+ uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/3d81813f48fd46a6bea2a76742bc8d01?api-version=7.0
response:
body:
- string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAj5xbFPmvvISQICB9AEggTQr+UKLIXCWsPjz0TUifXsS/dzVdVXDeejTUEzdPVEf5M6RPHB8rAvUR0T7dnfuX+kJieKnXgTVA3CRF4m+16dIU+44CYLwK75Q8A4jyfFMrVgAyaBxDAwd85uEnQ5v32Is1q4/wE3hnCOLFnIbBSDgaWfOBsPsNe+SLqKu+qC30CCHVU04LzZ8ZBzEnUReKULmekHw2uMMS24VODQo8olwaK2nhyxl0QUla6Ab0AgI2x1A/RcdDDoJ/ynJiLbQfiNTxrOXdx7YQx35u34Su7QG6F6ug6OzSWceQ0H9CKTYDlookiMt/lXTuvCNhwFb/lghUWqu0W1tMd2thYgr3UZoB0IaRe8e7kt1Om4RR9J0BtnW/7+IT4yrunAjwSxcUQwQQD4XxAx9i6ZtlYRduIO2XQq/xQQoG0p8775Sr7WB9FROYrN/sBLpilGWXiUIMPVsRI7k+J4P5D7V6Hc60eh3PlH7wcjZF42U3K0nNS2jOSunzdYrOzsclRnAgtbVhCk1QdbY+GCTVYUx5+qsPw0vSo83YfVHL2wMOe8iM7NsIg7QBhRhSAp5By84OVFxpY2YuMNKlSfHaiZkzr9r9NPlSa2yhyljiiPyOLgMap9RPUWV8X0RBpB6WF1omYitY538mKzjdYssDK7rKkKmXGlAsuF2ZzrD69qoBbw1VyV/yNpP9UxO7jfmaEKcAe1AAtz29Ko2bu0f+L9QZb3q9pdpShpBo9O7r53woyTJ805ewKJH+zpc4kJRDOax7/nSOuPAW99vqc2ySqOK51/3UUx1wlVPZGvRUNdeIdNrbx8XXMtpicNJLcRhPwLlQaQznVs+ixIImrsTQHCXHNXsaFETKuiEETQTWX+bbAXOTdiPo3TWOj/4D5r5CB29NdPjFfSPoL6wS3BoMG8GilTmyDuCfIF0eQMvtlNrfyGROz4zbMOhgUpcWAL6K/HBG0Gd5JVpnVjQkF0arAuGIlFuOdT/HRno3EX+887IywwluOW8WiplhhCp7gFtfMzmgOWBCvZSa2o+YNvgjui9qY1i2naND6TiDs21uRg1mVKIveQWLA7F0gb3qzzjJTx51u5293LknipP6yCBLSvYM3f9DDWDc/xrRXu4pqP1PrVwQRreXUjaHiBzyRRqbIqWE9dnBRgNlR0liEZMJCyro5woBpulNwOAHyu1Rj7jV/roZ4b/rG9kAceyhx120pYl1XdsVxckjlJTnfdX6j4gNFN92mzxKa7LuY6w/lnBHXt6gy6w4cwUthS/qAdjUVZ3BPOPhv/5XJKc313Yyp6hwNK/9UJgKwOKvYkeWMWkQRn0J6Px0OpZQrgIMjSwIEMIc4VOUFFTnnrWVwwONUTJkL4vZEwM4L+8uuWTSQygVOxaqz+7jawkva05asVoRNy1oxH6c0+KSFZDYH7WBqN9IB0Y8WP9RceTW/IYad4EO7dpdfH2kRsYDZEO0ogScL98qD8IfS98a21l5yZ/0uLqBOTec7EQtuh/kQDd9ovDimoXmlrhUIbjFGEhGJpbW9yshNxjU9pMpHbzLP6zUGOEWqG0V9TM3+CuB0vk4kGbGkn61DIgf7r2mZ01QPnNpic9sYbHukB4oYAvAl4joZVuPIzJM2/607qd7IMl71uhukwSOra+ZoxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSAAzADAAZQA2ADQAMQA1ADgALQAwADcAYQBkAC0ANAA5ADIAMQAtAGEAMwBiADIALQBmADcAZQBhADkAZQBiADUAMgBiADcAMTB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQIR6by//xWSU8CAgfQgIIDkPElW/fgKF2MqgELUMfm2kQL6NTkIFn2J1ppJLNAKTzbr+rDJ1tkikkbAxOCMWFRq+0SsgQ99pbXqqa3zNZ+qRB85Wu3xbBue7p52SiOnRAjD2uYsvpFjKa1S8hYvHckAC7JEw+TAXT3Abc+pSiSESIHucbmDvgDt9Ap9QxbSIam+ekVKMz73kcgAyvoTuZ/jMa3RNdzDeRaT/p0SCJNC/C3BLwUpVva4o6AAn9Wf731B5G9vXcM5nWIcEvFKzNB43qnDo4aVryogsQkBHpMjPzo4KluZtu0Ow2KDDimebcDpXMyoCD5shgiYgnVyZeWiTPNHKn9zoa5M7j6slZbpKNWNyyg6joSdosGR8WJzxAnMYyntkVFAG0Ihs1iTAQbRi/F6FIzOqEr3qLXVr810jEFtuyGlTkvyaJR8WmRrvu0uo49hZ39w0+Rsp3oQyYiRqXPISGVkXjN0Eo80HER1uAfOr08rqG6wo7zDPOAj3IiSQL0pc+ryxuLnsjLf5DouRjMmOsHbMGyhPkkVVat67HP86P6QkZYFTRmDqRWz6BQjo6R14GE0Hz+Yr2hJuU5vl4RW4b/2+HM6f14qHD3e9eJ9Zbt4kwI/BdnHbWX1juRiX9iO3c7COVk9TardKRy0Ijk9xNtW8AVrzpv98Gv6mpTYL2NXNNc1RHc+Y2TFhAkYcdrzdWh1qmmVJsMLGSWWsarEXq55nRXKG0f3DT/xvcb/2v9zvJApKwAon5Po6QdhlZLAHAJxLDcXRyP15NIk/0TiiSEXYU4szCRlD5p9LIgNOZ9Sy/1N5XcQo0C366ikytWhV+WoxKsXKgdCQlnFY/zY1qfa5Ui0S69eUDnPwe9Y6hJ/DsBoPiHObjJO1oUuvGnOZTJeiz3IsCfqBPrP/ekhBMuIVJkGm4LAAYo9eGVSf5R5Vx0onfRTLcoWQ/aWF9+thuLGHBebFjI9aBa05u7qaV5Lh8bcv4j0BHBV/kFmf2M/Un1Pc8vUpUmQeW5vry3xNfithw3qYUqda/FKYaXnbvIbIZxp+ksHGZ6iRgOadT4iGx3GHRHLHTztrWEkHU9P0PFquBGI/l239PK9gCi3r7tcbT3NWS1ztYywquqRCTIv1zDgn684uV3Q5f9D+k+U6Mp+3kqErEM2pYnTRQ0e4W7dHJGBYdhcMpDhRk4p3SQjuhLc3xOXpXi+IPSlSd0SoiAMUFaV460y8fq6TA3MB8wBwYFKw4DAhoEFCK1b00rr4HBzQruvEpxnHF+BdcUBBR4RjMcbv8ojPegZ6nSdGocs+Xr3w==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d","managed":true,"attributes":{"enabled":true,"nbf":1576111256,"exp":1607734256,"created":1576111856,"updated":1576111856,"recoveryLevel":"Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/a0223246ebeb4056a99771dc17f5fa0d"}'
+ 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:
- - '3952'
+ - '3960'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:05 GMT
+ - Wed, 22 Jan 2020 19:24:08 GMT
expires:
- '-1'
pragma:
@@ -986,11 +767,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - addr=131.107.147.235;act_addr_fam=InterNetwork;
+ - addr=131.107.159.235;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.0.883
+ - 1.1.0.891
x-powered-by:
- ASP.NET
status:
@@ -1207,8 +988,8 @@ interactions:
"vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"},
"loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081},
"certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value":
- "A6D42B59D36EB86B6C2E0030165727B007B6DEC0"}, "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/a0223246ebeb4056a99771dc17f5fa0d"},
+ "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":
@@ -1228,17 +1009,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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-201912111651","name":"AzurePSDeployment-201912111651","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":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"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/a0223246ebeb4056a99771dc17f5fa0d"},"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":"2019-12-12T00:51:07.2066018Z","duration":"PT0S","correlationId":"277ed304-5549-496c-ad87-3b94aac0ebc4","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/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","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/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","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/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","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/sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-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
@@ -1247,7 +1028,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:07 GMT
+ - Wed, 22 Jan 2020 19:24:10 GMT
expires:
- '-1'
pragma:
@@ -1476,8 +1257,8 @@ interactions:
"vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"},
"loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081},
"certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value":
- "A6D42B59D36EB86B6C2E0030165727B007B6DEC0"}, "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/a0223246ebeb4056a99771dc17f5fa0d"},
+ "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":
@@ -1497,28 +1278,28 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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-201912111651","name":"AzurePSDeployment-201912111651","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":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"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/a0223246ebeb4056a99771dc17f5fa0d"},"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":"2019-12-12T00:51:09.79929Z","duration":"PT1.0801461S","correlationId":"b9cf5c15-fa62-4a10-850e-949a816113f0","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/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","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/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","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/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-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-201912111651/operationStatuses/08586254950167585573?api-version=2019-07-01
+ - 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:
- - '7189'
+ - '7191'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:09 GMT
+ - Wed, 22 Jan 2020 19:24:11 GMT
expires:
- '-1'
pragma:
@@ -1544,12 +1325,98 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1561,7 +1428,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:51:39 GMT
+ - Wed, 22 Jan 2020 19:25:41 GMT
expires:
- '-1'
pragma:
@@ -1587,12 +1454,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1604,7 +1471,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:52:09 GMT
+ - Wed, 22 Jan 2020 19:26:11 GMT
expires:
- '-1'
pragma:
@@ -1630,12 +1497,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1647,7 +1514,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:52:40 GMT
+ - Wed, 22 Jan 2020 19:26:41 GMT
expires:
- '-1'
pragma:
@@ -1673,12 +1540,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1690,7 +1557,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:53:09 GMT
+ - Wed, 22 Jan 2020 19:27:12 GMT
expires:
- '-1'
pragma:
@@ -1716,12 +1583,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1733,7 +1600,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:53:39 GMT
+ - Wed, 22 Jan 2020 19:27:41 GMT
expires:
- '-1'
pragma:
@@ -1759,12 +1626,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1776,7 +1643,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:54:10 GMT
+ - Wed, 22 Jan 2020 19:28:11 GMT
expires:
- '-1'
pragma:
@@ -1802,12 +1669,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1819,7 +1686,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:54:40 GMT
+ - Wed, 22 Jan 2020 19:28:41 GMT
expires:
- '-1'
pragma:
@@ -1845,12 +1712,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1862,7 +1729,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:55:10 GMT
+ - Wed, 22 Jan 2020 19:29:12 GMT
expires:
- '-1'
pragma:
@@ -1888,12 +1755,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1905,7 +1772,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:55:40 GMT
+ - Wed, 22 Jan 2020 19:29:42 GMT
expires:
- '-1'
pragma:
@@ -1931,12 +1798,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1948,7 +1815,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:56:10 GMT
+ - Wed, 22 Jan 2020 19:30:11 GMT
expires:
- '-1'
pragma:
@@ -1974,12 +1841,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -1991,7 +1858,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:56:40 GMT
+ - Wed, 22 Jan 2020 19:30:42 GMT
expires:
- '-1'
pragma:
@@ -2017,12 +1884,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -2034,7 +1901,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:57:11 GMT
+ - Wed, 22 Jan 2020 19:31:12 GMT
expires:
- '-1'
pragma:
@@ -2060,12 +1927,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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/08586254950167585573?api-version=2019-07-01
+ 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"}'
@@ -2077,7 +1944,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:57:40 GMT
+ - Wed, 22 Jan 2020 19:31:42 GMT
expires:
- '-1'
pragma:
@@ -2103,15 +1970,15 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.77
+ 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-201912111651","name":"AzurePSDeployment-201912111651","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":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0"},"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/a0223246ebeb4056a99771dc17f5fa0d"},"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":"2019-12-12T00:57:31.9225815Z","duration":"PT6M23.2034376S","correlationId":"b9cf5c15-fa62-4a10-850e-949a816113f0","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/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","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/xjb4dma6imrnu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"xjb4dma6imrnu3","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/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsxjb4dma6imrnu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsxjb4dma6imrnu2","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":"5385900f-32fc-4bd6-964f-597c5eb51a3d","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/5385900f-32fc-4bd6-964f-597c5eb51a3d","certificate":{"thumbprint":"A6D42B59D36EB86B6C2E0030165727B007B6DEC0","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":"sflogsxjb4dma6imrnu2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/","queueEndpoint":"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/","tableEndpoint":"https://sflogsxjb4dma6imrnu2.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/sflogsxjb4dma6imrnu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/xjb4dma6imrnu3"}]}}'
+ 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
@@ -2120,7 +1987,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 00:57:40 GMT
+ - Wed, 22 Jan 2020 19:31:42 GMT
expires:
- '-1'
pragma:
@@ -2146,26 +2013,1538 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n -l --secret-identifier --vm-password --cluster-size
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2179,18 +3558,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2199,7 +3578,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:41 GMT
+ - Wed, 22 Jan 2020 19:31:49 GMT
expires:
- '-1'
pragma:
@@ -2230,26 +3609,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2263,18 +3642,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2283,7 +3662,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:41 GMT
+ - Wed, 22 Jan 2020 19:31:49 GMT
expires:
- '-1'
pragma:
@@ -2314,26 +3693,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2347,18 +3726,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2367,7 +3746,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:42 GMT
+ - Wed, 22 Jan 2020 19:31:50 GMT
expires:
- '-1'
pragma:
@@ -2398,26 +3777,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2431,18 +3810,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2451,7 +3830,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:43 GMT
+ - Wed, 22 Jan 2020 19:31:48 GMT
expires:
- '-1'
pragma:
@@ -2482,26 +3861,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2515,18 +3894,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2535,7 +3914,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:44 GMT
+ - Wed, 22 Jan 2020 19:31:51 GMT
expires:
- '-1'
pragma:
@@ -2566,26 +3945,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2599,18 +3978,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2619,7 +3998,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:43 GMT
+ - Wed, 22 Jan 2020 19:31:52 GMT
expires:
- '-1'
pragma:
@@ -2650,26 +4029,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2683,18 +4062,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2703,7 +4082,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:44 GMT
+ - Wed, 22 Jan 2020 19:31:52 GMT
expires:
- '-1'
pragma:
@@ -2734,26 +4113,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2767,18 +4146,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2787,7 +4166,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:45 GMT
+ - Wed, 22 Jan 2020 19:31:52 GMT
expires:
- '-1'
pragma:
@@ -2818,26 +4197,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2851,18 +4230,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2871,7 +4250,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:45 GMT
+ - Wed, 22 Jan 2020 19:31:53 GMT
expires:
- '-1'
pragma:
@@ -2902,26 +4281,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2935,18 +4314,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -2955,7 +4334,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:45 GMT
+ - Wed, 22 Jan 2020 19:31:53 GMT
expires:
- '-1'
pragma:
@@ -2986,26 +4365,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3019,18 +4398,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3039,7 +4418,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:46 GMT
+ - Wed, 22 Jan 2020 19:31:53 GMT
expires:
- '-1'
pragma:
@@ -3070,26 +4449,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3103,18 +4482,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3123,7 +4502,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:46 GMT
+ - Wed, 22 Jan 2020 19:31:54 GMT
expires:
- '-1'
pragma:
@@ -3154,26 +4533,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3187,18 +4566,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3207,7 +4586,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:46 GMT
+ - Wed, 22 Jan 2020 19:31:54 GMT
expires:
- '-1'
pragma:
@@ -3238,26 +4617,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3271,18 +4650,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3291,7 +4670,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:47 GMT
+ - Wed, 22 Jan 2020 19:31:55 GMT
expires:
- '-1'
pragma:
@@ -3322,26 +4701,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3355,18 +4734,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3375,7 +4754,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:47 GMT
+ - Wed, 22 Jan 2020 19:31:55 GMT
expires:
- '-1'
pragma:
@@ -3406,26 +4785,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3439,18 +4818,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3459,7 +4838,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:48 GMT
+ - Wed, 22 Jan 2020 19:31:56 GMT
expires:
- '-1'
pragma:
@@ -3490,26 +4869,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3523,18 +4902,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3543,7 +4922,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:48 GMT
+ - Wed, 22 Jan 2020 19:31:56 GMT
expires:
- '-1'
pragma:
@@ -3574,26 +4953,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3607,18 +4986,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3627,7 +5006,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:48 GMT
+ - Wed, 22 Jan 2020 19:31:56 GMT
expires:
- '-1'
pragma:
@@ -3658,26 +5037,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3691,18 +5070,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3711,7 +5090,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:49 GMT
+ - Wed, 22 Jan 2020 19:31:57 GMT
expires:
- '-1'
pragma:
@@ -3742,26 +5121,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3775,18 +5154,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3795,7 +5174,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:49 GMT
+ - Wed, 22 Jan 2020 19:31:58 GMT
expires:
- '-1'
pragma:
@@ -3826,26 +5205,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3859,18 +5238,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3879,7 +5258,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:50 GMT
+ - Wed, 22 Jan 2020 19:31:58 GMT
expires:
- '-1'
pragma:
@@ -3910,26 +5289,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3943,18 +5322,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -3963,7 +5342,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:50 GMT
+ - Wed, 22 Jan 2020 19:31:57 GMT
expires:
- '-1'
pragma:
@@ -3994,26 +5373,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4027,18 +5406,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4047,7 +5426,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:51 GMT
+ - Wed, 22 Jan 2020 19:31:59 GMT
expires:
- '-1'
pragma:
@@ -4078,26 +5457,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4111,18 +5490,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4131,7 +5510,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:50 GMT
+ - Wed, 22 Jan 2020 19:31:59 GMT
expires:
- '-1'
pragma:
@@ -4162,26 +5541,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4195,18 +5574,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4215,7 +5594,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:51 GMT
+ - Wed, 22 Jan 2020 19:31:59 GMT
expires:
- '-1'
pragma:
@@ -4246,26 +5625,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4279,18 +5658,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4299,7 +5678,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:52 GMT
+ - Wed, 22 Jan 2020 19:32:00 GMT
expires:
- '-1'
pragma:
@@ -4330,26 +5709,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4363,18 +5742,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4383,7 +5762,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:52 GMT
+ - Wed, 22 Jan 2020 19:32:01 GMT
expires:
- '-1'
pragma:
@@ -4414,26 +5793,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4447,18 +5826,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4467,7 +5846,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:52 GMT
+ - Wed, 22 Jan 2020 19:32:01 GMT
expires:
- '-1'
pragma:
@@ -4498,26 +5877,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4531,18 +5910,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4551,7 +5930,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:53 GMT
+ - Wed, 22 Jan 2020 19:32:01 GMT
expires:
- '-1'
pragma:
@@ -4582,26 +5961,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4615,18 +5994,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4635,7 +6014,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:53 GMT
+ - Wed, 22 Jan 2020 19:32:02 GMT
expires:
- '-1'
pragma:
@@ -4666,26 +6045,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4699,18 +6078,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4719,7 +6098,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:54 GMT
+ - Wed, 22 Jan 2020 19:32:02 GMT
expires:
- '-1'
pragma:
@@ -4750,26 +6129,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4783,18 +6162,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4803,7 +6182,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:54 GMT
+ - Wed, 22 Jan 2020 19:32:03 GMT
expires:
- '-1'
pragma:
@@ -4834,26 +6213,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4867,18 +6246,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4887,7 +6266,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:55 GMT
+ - Wed, 22 Jan 2020 19:32:04 GMT
expires:
- '-1'
pragma:
@@ -4918,26 +6297,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4951,18 +6330,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -4971,7 +6350,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:55 GMT
+ - Wed, 22 Jan 2020 19:32:04 GMT
expires:
- '-1'
pragma:
@@ -5002,26 +6381,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5035,18 +6414,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5055,7 +6434,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:56 GMT
+ - Wed, 22 Jan 2020 19:32:04 GMT
expires:
- '-1'
pragma:
@@ -5086,26 +6465,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5119,18 +6498,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5139,7 +6518,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:56 GMT
+ - Wed, 22 Jan 2020 19:32:04 GMT
expires:
- '-1'
pragma:
@@ -5170,26 +6549,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5203,18 +6582,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5223,7 +6602,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:56 GMT
+ - Wed, 22 Jan 2020 19:32:06 GMT
expires:
- '-1'
pragma:
@@ -5254,26 +6633,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5287,18 +6666,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5307,7 +6686,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:56 GMT
+ - Wed, 22 Jan 2020 19:32:05 GMT
expires:
- '-1'
pragma:
@@ -5338,26 +6717,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5371,18 +6750,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5391,7 +6770,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:57 GMT
+ - Wed, 22 Jan 2020 19:32:06 GMT
expires:
- '-1'
pragma:
@@ -5422,26 +6801,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5455,18 +6834,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5475,7 +6854,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:57 GMT
+ - Wed, 22 Jan 2020 19:32:06 GMT
expires:
- '-1'
pragma:
@@ -5506,26 +6885,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5539,18 +6918,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5559,7 +6938,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:58 GMT
+ - Wed, 22 Jan 2020 19:32:07 GMT
expires:
- '-1'
pragma:
@@ -5590,26 +6969,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5623,18 +7002,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5643,7 +7022,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:58 GMT
+ - Wed, 22 Jan 2020 19:32:08 GMT
expires:
- '-1'
pragma:
@@ -5674,26 +7053,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5707,18 +7086,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5727,7 +7106,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:59 GMT
+ - Wed, 22 Jan 2020 19:32:07 GMT
expires:
- '-1'
pragma:
@@ -5758,26 +7137,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5791,18 +7170,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5811,7 +7190,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:59 GMT
+ - Wed, 22 Jan 2020 19:32:08 GMT
expires:
- '-1'
pragma:
@@ -5842,26 +7221,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5875,18 +7254,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5895,7 +7274,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:57:59 GMT
+ - Wed, 22 Jan 2020 19:32:09 GMT
expires:
- '-1'
pragma:
@@ -5926,26 +7305,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -5959,18 +7338,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -5979,7 +7358,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:00 GMT
+ - Wed, 22 Jan 2020 19:32:09 GMT
expires:
- '-1'
pragma:
@@ -6010,26 +7389,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6043,18 +7422,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6063,7 +7442,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:00 GMT
+ - Wed, 22 Jan 2020 19:32:09 GMT
expires:
- '-1'
pragma:
@@ -6094,26 +7473,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6127,18 +7506,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6147,7 +7526,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:01 GMT
+ - Wed, 22 Jan 2020 19:32:09 GMT
expires:
- '-1'
pragma:
@@ -6178,26 +7557,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6211,18 +7590,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6231,7 +7610,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:01 GMT
+ - Wed, 22 Jan 2020 19:32:10 GMT
expires:
- '-1'
pragma:
@@ -6262,26 +7641,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6295,18 +7674,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6315,7 +7694,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:02 GMT
+ - Wed, 22 Jan 2020 19:32:11 GMT
expires:
- '-1'
pragma:
@@ -6346,26 +7725,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6379,18 +7758,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6399,7 +7778,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:02 GMT
+ - Wed, 22 Jan 2020 19:32:11 GMT
expires:
- '-1'
pragma:
@@ -6430,26 +7809,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6463,18 +7842,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6483,7 +7862,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:03 GMT
+ - Wed, 22 Jan 2020 19:32:12 GMT
expires:
- '-1'
pragma:
@@ -6514,26 +7893,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6547,18 +7926,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6567,7 +7946,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:03 GMT
+ - Wed, 22 Jan 2020 19:32:12 GMT
expires:
- '-1'
pragma:
@@ -6598,26 +7977,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6631,18 +8010,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6651,7 +8030,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:04 GMT
+ - Wed, 22 Jan 2020 19:32:13 GMT
expires:
- '-1'
pragma:
@@ -6682,26 +8061,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6715,18 +8094,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6735,7 +8114,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:04 GMT
+ - Wed, 22 Jan 2020 19:32:13 GMT
expires:
- '-1'
pragma:
@@ -6766,26 +8145,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6799,18 +8178,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6819,7 +8198,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:04 GMT
+ - Wed, 22 Jan 2020 19:32:13 GMT
expires:
- '-1'
pragma:
@@ -6850,26 +8229,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6883,18 +8262,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6903,7 +8282,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:04 GMT
+ - Wed, 22 Jan 2020 19:32:14 GMT
expires:
- '-1'
pragma:
@@ -6934,26 +8313,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6967,18 +8346,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -6987,7 +8366,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:06 GMT
+ - Wed, 22 Jan 2020 19:32:14 GMT
expires:
- '-1'
pragma:
@@ -7018,26 +8397,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7051,18 +8430,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7071,7 +8450,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:06 GMT
+ - Wed, 22 Jan 2020 19:32:15 GMT
expires:
- '-1'
pragma:
@@ -7102,26 +8481,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7135,18 +8514,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7155,7 +8534,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:07 GMT
+ - Wed, 22 Jan 2020 19:32:15 GMT
expires:
- '-1'
pragma:
@@ -7186,26 +8565,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7219,18 +8598,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7239,7 +8618,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:07 GMT
+ - Wed, 22 Jan 2020 19:32:16 GMT
expires:
- '-1'
pragma:
@@ -7270,26 +8649,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7303,18 +8682,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7323,7 +8702,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:07 GMT
+ - Wed, 22 Jan 2020 19:32:16 GMT
expires:
- '-1'
pragma:
@@ -7354,26 +8733,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7387,18 +8766,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7407,7 +8786,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:08 GMT
+ - Wed, 22 Jan 2020 19:32:17 GMT
expires:
- '-1'
pragma:
@@ -7438,26 +8817,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7471,18 +8850,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7491,7 +8870,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:08 GMT
+ - Wed, 22 Jan 2020 19:32:17 GMT
expires:
- '-1'
pragma:
@@ -7522,26 +8901,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7555,18 +8934,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7575,7 +8954,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:09 GMT
+ - Wed, 22 Jan 2020 19:32:17 GMT
expires:
- '-1'
pragma:
@@ -7606,26 +8985,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7639,18 +9018,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7659,7 +9038,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:09 GMT
+ - Wed, 22 Jan 2020 19:32:17 GMT
expires:
- '-1'
pragma:
@@ -7690,26 +9069,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7723,18 +9102,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7743,7 +9122,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:09 GMT
+ - Wed, 22 Jan 2020 19:32:18 GMT
expires:
- '-1'
pragma:
@@ -7774,26 +9153,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7807,18 +9186,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7827,7 +9206,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:09 GMT
+ - Wed, 22 Jan 2020 19:32:19 GMT
expires:
- '-1'
pragma:
@@ -7858,26 +9237,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7891,18 +9270,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7911,7 +9290,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:10 GMT
+ - Wed, 22 Jan 2020 19:32:19 GMT
expires:
- '-1'
pragma:
@@ -7942,26 +9321,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -7975,18 +9354,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -7995,7 +9374,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:11 GMT
+ - Wed, 22 Jan 2020 19:32:20 GMT
expires:
- '-1'
pragma:
@@ -8026,26 +9405,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8059,18 +9438,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8079,7 +9458,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:11 GMT
+ - Wed, 22 Jan 2020 19:32:20 GMT
expires:
- '-1'
pragma:
@@ -8110,26 +9489,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8143,18 +9522,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8163,7 +9542,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:11 GMT
+ - Wed, 22 Jan 2020 19:32:21 GMT
expires:
- '-1'
pragma:
@@ -8194,26 +9573,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8227,18 +9606,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8247,7 +9626,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:12 GMT
+ - Wed, 22 Jan 2020 19:32:21 GMT
expires:
- '-1'
pragma:
@@ -8278,26 +9657,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8311,18 +9690,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8331,7 +9710,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:12 GMT
+ - Wed, 22 Jan 2020 19:32:21 GMT
expires:
- '-1'
pragma:
@@ -8362,26 +9741,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8395,18 +9774,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8415,7 +9794,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:13 GMT
+ - Wed, 22 Jan 2020 19:32:22 GMT
expires:
- '-1'
pragma:
@@ -8446,26 +9825,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8479,18 +9858,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8499,7 +9878,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:14 GMT
+ - Wed, 22 Jan 2020 19:32:23 GMT
expires:
- '-1'
pragma:
@@ -8530,26 +9909,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8563,18 +9942,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8583,7 +9962,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:14 GMT
+ - Wed, 22 Jan 2020 19:32:23 GMT
expires:
- '-1'
pragma:
@@ -8614,26 +9993,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8647,18 +10026,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8667,7 +10046,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:14 GMT
+ - Wed, 22 Jan 2020 19:32:24 GMT
expires:
- '-1'
pragma:
@@ -8698,26 +10077,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8731,18 +10110,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8751,7 +10130,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:15 GMT
+ - Wed, 22 Jan 2020 19:32:23 GMT
expires:
- '-1'
pragma:
@@ -8782,26 +10161,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8815,18 +10194,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8835,7 +10214,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:15 GMT
+ - Wed, 22 Jan 2020 19:32:24 GMT
expires:
- '-1'
pragma:
@@ -8866,26 +10245,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8899,18 +10278,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -8919,7 +10298,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:16 GMT
+ - Wed, 22 Jan 2020 19:32:24 GMT
expires:
- '-1'
pragma:
@@ -8950,26 +10329,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -8983,18 +10362,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9003,7 +10382,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:16 GMT
+ - Wed, 22 Jan 2020 19:32:25 GMT
expires:
- '-1'
pragma:
@@ -9034,26 +10413,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9067,18 +10446,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9087,7 +10466,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:17 GMT
+ - Wed, 22 Jan 2020 19:32:26 GMT
expires:
- '-1'
pragma:
@@ -9118,26 +10497,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9151,18 +10530,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9171,7 +10550,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:17 GMT
+ - Wed, 22 Jan 2020 19:32:26 GMT
expires:
- '-1'
pragma:
@@ -9202,26 +10581,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9235,18 +10614,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9255,7 +10634,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:18 GMT
+ - Wed, 22 Jan 2020 19:32:26 GMT
expires:
- '-1'
pragma:
@@ -9286,26 +10665,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9319,18 +10698,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9339,7 +10718,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:18 GMT
+ - Wed, 22 Jan 2020 19:32:27 GMT
expires:
- '-1'
pragma:
@@ -9370,26 +10749,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9403,18 +10782,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9423,7 +10802,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:18 GMT
+ - Wed, 22 Jan 2020 19:32:27 GMT
expires:
- '-1'
pragma:
@@ -9454,26 +10833,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9487,18 +10866,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9507,7 +10886,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:19 GMT
+ - Wed, 22 Jan 2020 19:32:28 GMT
expires:
- '-1'
pragma:
@@ -9538,26 +10917,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9571,18 +10950,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9591,7 +10970,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:19 GMT
+ - Wed, 22 Jan 2020 19:32:28 GMT
expires:
- '-1'
pragma:
@@ -9622,26 +11001,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9655,18 +11034,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9675,7 +11054,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:20 GMT
+ - Wed, 22 Jan 2020 19:32:29 GMT
expires:
- '-1'
pragma:
@@ -9706,26 +11085,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9739,18 +11118,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9759,7 +11138,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:20 GMT
+ - Wed, 22 Jan 2020 19:32:29 GMT
expires:
- '-1'
pragma:
@@ -9790,26 +11169,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9823,18 +11202,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9843,7 +11222,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:21 GMT
+ - Wed, 22 Jan 2020 19:32:30 GMT
expires:
- '-1'
pragma:
@@ -9874,26 +11253,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9907,18 +11286,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -9927,7 +11306,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:21 GMT
+ - Wed, 22 Jan 2020 19:32:30 GMT
expires:
- '-1'
pragma:
@@ -9958,26 +11337,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -9991,18 +11370,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10011,7 +11390,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:21 GMT
+ - Wed, 22 Jan 2020 19:32:31 GMT
expires:
- '-1'
pragma:
@@ -10042,26 +11421,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10075,18 +11454,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10095,7 +11474,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:22 GMT
+ - Wed, 22 Jan 2020 19:32:31 GMT
expires:
- '-1'
pragma:
@@ -10126,26 +11505,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10159,18 +11538,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10179,7 +11558,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:22 GMT
+ - Wed, 22 Jan 2020 19:32:32 GMT
expires:
- '-1'
pragma:
@@ -10210,26 +11589,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10243,18 +11622,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10263,7 +11642,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:23 GMT
+ - Wed, 22 Jan 2020 19:32:33 GMT
expires:
- '-1'
pragma:
@@ -10294,26 +11673,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10327,18 +11706,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10347,7 +11726,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:23 GMT
+ - Wed, 22 Jan 2020 19:32:33 GMT
expires:
- '-1'
pragma:
@@ -10378,26 +11757,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10411,18 +11790,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10431,7 +11810,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:24 GMT
+ - Wed, 22 Jan 2020 19:32:34 GMT
expires:
- '-1'
pragma:
@@ -10462,26 +11841,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10495,18 +11874,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10515,7 +11894,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:24 GMT
+ - Wed, 22 Jan 2020 19:32:33 GMT
expires:
- '-1'
pragma:
@@ -10546,26 +11925,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10579,18 +11958,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10599,7 +11978,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:25 GMT
+ - Wed, 22 Jan 2020 19:32:35 GMT
expires:
- '-1'
pragma:
@@ -10630,26 +12009,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10663,18 +12042,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10683,7 +12062,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:25 GMT
+ - Wed, 22 Jan 2020 19:32:34 GMT
expires:
- '-1'
pragma:
@@ -10714,26 +12093,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10747,18 +12126,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10767,7 +12146,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:25 GMT
+ - Wed, 22 Jan 2020 19:32:35 GMT
expires:
- '-1'
pragma:
@@ -10798,26 +12177,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10831,18 +12210,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10851,7 +12230,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:26 GMT
+ - Wed, 22 Jan 2020 19:32:35 GMT
expires:
- '-1'
pragma:
@@ -10882,26 +12261,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10915,18 +12294,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -10935,7 +12314,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:27 GMT
+ - Wed, 22 Jan 2020 19:32:36 GMT
expires:
- '-1'
pragma:
@@ -10966,26 +12345,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -10999,18 +12378,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11019,7 +12398,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:27 GMT
+ - Wed, 22 Jan 2020 19:32:36 GMT
expires:
- '-1'
pragma:
@@ -11050,26 +12429,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11083,18 +12462,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11103,7 +12482,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:28 GMT
+ - Wed, 22 Jan 2020 19:32:37 GMT
expires:
- '-1'
pragma:
@@ -11134,26 +12513,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11167,18 +12546,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11187,7 +12566,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:28 GMT
+ - Wed, 22 Jan 2020 19:32:37 GMT
expires:
- '-1'
pragma:
@@ -11218,26 +12597,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11251,18 +12630,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11271,7 +12650,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:28 GMT
+ - Wed, 22 Jan 2020 19:32:39 GMT
expires:
- '-1'
pragma:
@@ -11302,26 +12681,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11335,18 +12714,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11355,7 +12734,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:29 GMT
+ - Wed, 22 Jan 2020 19:32:39 GMT
expires:
- '-1'
pragma:
@@ -11386,26 +12765,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11419,18 +12798,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11439,7 +12818,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:29 GMT
+ - Wed, 22 Jan 2020 19:32:39 GMT
expires:
- '-1'
pragma:
@@ -11470,26 +12849,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11503,18 +12882,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11523,7 +12902,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:30 GMT
+ - Wed, 22 Jan 2020 19:32:39 GMT
expires:
- '-1'
pragma:
@@ -11554,26 +12933,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11587,18 +12966,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11607,7 +12986,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:31 GMT
+ - Wed, 22 Jan 2020 19:32:40 GMT
expires:
- '-1'
pragma:
@@ -11638,26 +13017,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11671,18 +13050,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11691,7 +13070,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:31 GMT
+ - Wed, 22 Jan 2020 19:32:41 GMT
expires:
- '-1'
pragma:
@@ -11722,26 +13101,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11755,18 +13134,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11775,7 +13154,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:32 GMT
+ - Wed, 22 Jan 2020 19:32:41 GMT
expires:
- '-1'
pragma:
@@ -11806,26 +13185,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11839,18 +13218,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11859,7 +13238,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:32 GMT
+ - Wed, 22 Jan 2020 19:32:42 GMT
expires:
- '-1'
pragma:
@@ -11890,26 +13269,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -11923,18 +13302,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -11943,7 +13322,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:32 GMT
+ - Wed, 22 Jan 2020 19:32:42 GMT
expires:
- '-1'
pragma:
@@ -11974,26 +13353,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12007,18 +13386,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12027,7 +13406,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:33 GMT
+ - Wed, 22 Jan 2020 19:32:42 GMT
expires:
- '-1'
pragma:
@@ -12058,26 +13437,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12091,18 +13470,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12111,7 +13490,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:33 GMT
+ - Wed, 22 Jan 2020 19:32:43 GMT
expires:
- '-1'
pragma:
@@ -12142,26 +13521,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12175,18 +13554,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12195,7 +13574,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:34 GMT
+ - Wed, 22 Jan 2020 19:32:44 GMT
expires:
- '-1'
pragma:
@@ -12226,26 +13605,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12259,18 +13638,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12279,7 +13658,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:35 GMT
+ - Wed, 22 Jan 2020 19:32:43 GMT
expires:
- '-1'
pragma:
@@ -12310,26 +13689,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12343,18 +13722,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12363,7 +13742,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:35 GMT
+ - Wed, 22 Jan 2020 19:32:45 GMT
expires:
- '-1'
pragma:
@@ -12394,26 +13773,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12427,18 +13806,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12447,7 +13826,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:35 GMT
+ - Wed, 22 Jan 2020 19:32:45 GMT
expires:
- '-1'
pragma:
@@ -12478,26 +13857,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12511,18 +13890,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12531,7 +13910,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:36 GMT
+ - Wed, 22 Jan 2020 19:32:45 GMT
expires:
- '-1'
pragma:
@@ -12562,26 +13941,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12595,18 +13974,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12615,7 +13994,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:36 GMT
+ - Wed, 22 Jan 2020 19:32:46 GMT
expires:
- '-1'
pragma:
@@ -12646,26 +14025,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12679,18 +14058,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12699,7 +14078,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:37 GMT
+ - Wed, 22 Jan 2020 19:32:47 GMT
expires:
- '-1'
pragma:
@@ -12730,26 +14109,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12763,18 +14142,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12783,7 +14162,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:38 GMT
+ - Wed, 22 Jan 2020 19:32:47 GMT
expires:
- '-1'
pragma:
@@ -12814,26 +14193,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12847,18 +14226,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12867,7 +14246,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:38 GMT
+ - Wed, 22 Jan 2020 19:32:48 GMT
expires:
- '-1'
pragma:
@@ -12898,26 +14277,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -12931,18 +14310,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -12951,7 +14330,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:38 GMT
+ - Wed, 22 Jan 2020 19:32:48 GMT
expires:
- '-1'
pragma:
@@ -12982,26 +14361,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13015,18 +14394,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13035,7 +14414,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:38 GMT
+ - Wed, 22 Jan 2020 19:32:49 GMT
expires:
- '-1'
pragma:
@@ -13066,26 +14445,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13099,18 +14478,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13119,7 +14498,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:39 GMT
+ - Wed, 22 Jan 2020 19:32:49 GMT
expires:
- '-1'
pragma:
@@ -13150,26 +14529,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13183,18 +14562,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13203,7 +14582,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:40 GMT
+ - Wed, 22 Jan 2020 19:32:50 GMT
expires:
- '-1'
pragma:
@@ -13234,26 +14613,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13267,18 +14646,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13287,7 +14666,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:40 GMT
+ - Wed, 22 Jan 2020 19:32:50 GMT
expires:
- '-1'
pragma:
@@ -13318,26 +14697,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13351,18 +14730,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13371,7 +14750,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:41 GMT
+ - Wed, 22 Jan 2020 19:32:51 GMT
expires:
- '-1'
pragma:
@@ -13402,26 +14781,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13435,18 +14814,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13455,7 +14834,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:41 GMT
+ - Wed, 22 Jan 2020 19:32:51 GMT
expires:
- '-1'
pragma:
@@ -13486,26 +14865,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13519,18 +14898,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13539,7 +14918,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:42 GMT
+ - Wed, 22 Jan 2020 19:32:51 GMT
expires:
- '-1'
pragma:
@@ -13570,26 +14949,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13603,18 +14982,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13623,7 +15002,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:42 GMT
+ - Wed, 22 Jan 2020 19:32:52 GMT
expires:
- '-1'
pragma:
@@ -13654,26 +15033,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13687,18 +15066,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13707,7 +15086,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:42 GMT
+ - Wed, 22 Jan 2020 19:32:53 GMT
expires:
- '-1'
pragma:
@@ -13738,26 +15117,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13771,18 +15150,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13791,7 +15170,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:43 GMT
+ - Wed, 22 Jan 2020 19:32:53 GMT
expires:
- '-1'
pragma:
@@ -13822,26 +15201,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13855,18 +15234,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13875,7 +15254,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:44 GMT
+ - Wed, 22 Jan 2020 19:32:54 GMT
expires:
- '-1'
pragma:
@@ -13906,26 +15285,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -13939,18 +15318,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -13959,7 +15338,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:45 GMT
+ - Wed, 22 Jan 2020 19:32:54 GMT
expires:
- '-1'
pragma:
@@ -13990,26 +15369,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14023,18 +15402,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14043,7 +15422,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:45 GMT
+ - Wed, 22 Jan 2020 19:32:55 GMT
expires:
- '-1'
pragma:
@@ -14074,26 +15453,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14107,18 +15486,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14127,7 +15506,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:46 GMT
+ - Wed, 22 Jan 2020 19:32:55 GMT
expires:
- '-1'
pragma:
@@ -14158,26 +15537,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14191,18 +15570,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14211,7 +15590,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:46 GMT
+ - Wed, 22 Jan 2020 19:32:56 GMT
expires:
- '-1'
pragma:
@@ -14242,26 +15621,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14275,18 +15654,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14295,7 +15674,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:47 GMT
+ - Wed, 22 Jan 2020 19:32:56 GMT
expires:
- '-1'
pragma:
@@ -14326,26 +15705,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14359,18 +15738,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14379,7 +15758,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:47 GMT
+ - Wed, 22 Jan 2020 19:32:57 GMT
expires:
- '-1'
pragma:
@@ -14410,26 +15789,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14443,18 +15822,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14463,7 +15842,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:47 GMT
+ - Wed, 22 Jan 2020 19:32:57 GMT
expires:
- '-1'
pragma:
@@ -14494,26 +15873,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14527,18 +15906,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14547,7 +15926,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:48 GMT
+ - Wed, 22 Jan 2020 19:32:58 GMT
expires:
- '-1'
pragma:
@@ -14578,26 +15957,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14611,18 +15990,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14631,7 +16010,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:48 GMT
+ - Wed, 22 Jan 2020 19:32:58 GMT
expires:
- '-1'
pragma:
@@ -14662,26 +16041,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14695,18 +16074,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14715,7 +16094,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:49 GMT
+ - Wed, 22 Jan 2020 19:32:59 GMT
expires:
- '-1'
pragma:
@@ -14746,26 +16125,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14779,18 +16158,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14799,7 +16178,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:49 GMT
+ - Wed, 22 Jan 2020 19:32:59 GMT
expires:
- '-1'
pragma:
@@ -14830,26 +16209,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14863,18 +16242,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14883,7 +16262,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:50 GMT
+ - Wed, 22 Jan 2020 19:33:00 GMT
expires:
- '-1'
pragma:
@@ -14914,26 +16293,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -14947,18 +16326,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -14967,7 +16346,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:50 GMT
+ - Wed, 22 Jan 2020 19:33:00 GMT
expires:
- '-1'
pragma:
@@ -14998,26 +16377,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15031,18 +16410,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15051,7 +16430,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:51 GMT
+ - Wed, 22 Jan 2020 19:33:01 GMT
expires:
- '-1'
pragma:
@@ -15082,26 +16461,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15115,18 +16494,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15135,7 +16514,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:52 GMT
+ - Wed, 22 Jan 2020 19:33:01 GMT
expires:
- '-1'
pragma:
@@ -15166,26 +16545,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15199,18 +16578,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15219,7 +16598,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:52 GMT
+ - Wed, 22 Jan 2020 19:33:02 GMT
expires:
- '-1'
pragma:
@@ -15250,26 +16629,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15283,18 +16662,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15303,7 +16682,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:52 GMT
+ - Wed, 22 Jan 2020 19:33:01 GMT
expires:
- '-1'
pragma:
@@ -15334,26 +16713,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15367,18 +16746,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15387,7 +16766,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:53 GMT
+ - Wed, 22 Jan 2020 19:33:03 GMT
expires:
- '-1'
pragma:
@@ -15418,26 +16797,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15451,18 +16830,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15471,7 +16850,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:54 GMT
+ - Wed, 22 Jan 2020 19:33:03 GMT
expires:
- '-1'
pragma:
@@ -15502,26 +16881,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15535,18 +16914,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15555,7 +16934,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:54 GMT
+ - Wed, 22 Jan 2020 19:33:04 GMT
expires:
- '-1'
pragma:
@@ -15586,26 +16965,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15619,18 +16998,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15639,7 +17018,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:55 GMT
+ - Wed, 22 Jan 2020 19:33:05 GMT
expires:
- '-1'
pragma:
@@ -15670,26 +17049,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15703,18 +17082,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15723,7 +17102,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:56 GMT
+ - Wed, 22 Jan 2020 19:33:05 GMT
expires:
- '-1'
pragma:
@@ -15754,26 +17133,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15787,18 +17166,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15807,7 +17186,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:56 GMT
+ - Wed, 22 Jan 2020 19:33:06 GMT
expires:
- '-1'
pragma:
@@ -15838,26 +17217,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15871,18 +17250,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15891,7 +17270,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:57 GMT
+ - Wed, 22 Jan 2020 19:33:06 GMT
expires:
- '-1'
pragma:
@@ -15922,26 +17301,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -15955,18 +17334,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -15975,7 +17354,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:57 GMT
+ - Wed, 22 Jan 2020 19:33:06 GMT
expires:
- '-1'
pragma:
@@ -16006,26 +17385,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16039,18 +17418,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16059,7 +17438,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:58 GMT
+ - Wed, 22 Jan 2020 19:33:07 GMT
expires:
- '-1'
pragma:
@@ -16090,26 +17469,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16123,18 +17502,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16143,7 +17522,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:58 GMT
+ - Wed, 22 Jan 2020 19:33:08 GMT
expires:
- '-1'
pragma:
@@ -16174,26 +17553,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16207,18 +17586,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16227,7 +17606,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:58 GMT
+ - Wed, 22 Jan 2020 19:33:09 GMT
expires:
- '-1'
pragma:
@@ -16258,26 +17637,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16291,18 +17670,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16311,7 +17690,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:58:59 GMT
+ - Wed, 22 Jan 2020 19:33:09 GMT
expires:
- '-1'
pragma:
@@ -16342,26 +17721,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16375,18 +17754,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16395,7 +17774,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:00 GMT
+ - Wed, 22 Jan 2020 19:33:09 GMT
expires:
- '-1'
pragma:
@@ -16426,26 +17805,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16459,18 +17838,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16479,7 +17858,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:00 GMT
+ - Wed, 22 Jan 2020 19:33:10 GMT
expires:
- '-1'
pragma:
@@ -16510,26 +17889,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16543,18 +17922,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16563,7 +17942,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:00 GMT
+ - Wed, 22 Jan 2020 19:33:11 GMT
expires:
- '-1'
pragma:
@@ -16594,26 +17973,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16627,18 +18006,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16647,7 +18026,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:01 GMT
+ - Wed, 22 Jan 2020 19:33:11 GMT
expires:
- '-1'
pragma:
@@ -16678,26 +18057,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16711,18 +18090,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16731,7 +18110,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:02 GMT
+ - Wed, 22 Jan 2020 19:33:11 GMT
expires:
- '-1'
pragma:
@@ -16762,26 +18141,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16795,18 +18174,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16815,7 +18194,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:02 GMT
+ - Wed, 22 Jan 2020 19:33:12 GMT
expires:
- '-1'
pragma:
@@ -16846,26 +18225,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16879,18 +18258,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16899,7 +18278,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:03 GMT
+ - Wed, 22 Jan 2020 19:33:12 GMT
expires:
- '-1'
pragma:
@@ -16930,26 +18309,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -16963,18 +18342,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -16983,7 +18362,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:04 GMT
+ - Wed, 22 Jan 2020 19:33:13 GMT
expires:
- '-1'
pragma:
@@ -17014,26 +18393,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17047,18 +18426,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17067,7 +18446,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:04 GMT
+ - Wed, 22 Jan 2020 19:33:14 GMT
expires:
- '-1'
pragma:
@@ -17098,26 +18477,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17131,18 +18510,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17151,7 +18530,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:04 GMT
+ - Wed, 22 Jan 2020 19:33:14 GMT
expires:
- '-1'
pragma:
@@ -17182,26 +18561,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17215,18 +18594,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17235,7 +18614,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:04 GMT
+ - Wed, 22 Jan 2020 19:33:15 GMT
expires:
- '-1'
pragma:
@@ -17266,26 +18645,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17299,18 +18678,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17319,7 +18698,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:05 GMT
+ - Wed, 22 Jan 2020 19:33:15 GMT
expires:
- '-1'
pragma:
@@ -17350,26 +18729,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17383,18 +18762,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17403,7 +18782,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:06 GMT
+ - Wed, 22 Jan 2020 19:33:15 GMT
expires:
- '-1'
pragma:
@@ -17434,26 +18813,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17467,18 +18846,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17487,7 +18866,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:06 GMT
+ - Wed, 22 Jan 2020 19:33:16 GMT
expires:
- '-1'
pragma:
@@ -17518,26 +18897,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17551,18 +18930,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17571,7 +18950,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:06 GMT
+ - Wed, 22 Jan 2020 19:33:17 GMT
expires:
- '-1'
pragma:
@@ -17602,26 +18981,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17635,18 +19014,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17655,7 +19034,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:07 GMT
+ - Wed, 22 Jan 2020 19:33:17 GMT
expires:
- '-1'
pragma:
@@ -17686,26 +19065,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17719,18 +19098,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17739,7 +19118,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:08 GMT
+ - Wed, 22 Jan 2020 19:33:18 GMT
expires:
- '-1'
pragma:
@@ -17770,26 +19149,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17803,18 +19182,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17823,7 +19202,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:08 GMT
+ - Wed, 22 Jan 2020 19:33:19 GMT
expires:
- '-1'
pragma:
@@ -17854,26 +19233,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17887,18 +19266,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17907,7 +19286,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:09 GMT
+ - Wed, 22 Jan 2020 19:33:19 GMT
expires:
- '-1'
pragma:
@@ -17938,26 +19317,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -17971,18 +19350,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -17991,7 +19370,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:09 GMT
+ - Wed, 22 Jan 2020 19:33:20 GMT
expires:
- '-1'
pragma:
@@ -18022,26 +19401,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18055,18 +19434,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18075,7 +19454,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:10 GMT
+ - Wed, 22 Jan 2020 19:33:20 GMT
expires:
- '-1'
pragma:
@@ -18106,26 +19485,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18139,18 +19518,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18159,7 +19538,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:11 GMT
+ - Wed, 22 Jan 2020 19:33:21 GMT
expires:
- '-1'
pragma:
@@ -18190,26 +19569,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18223,18 +19602,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18243,7 +19622,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:12 GMT
+ - Wed, 22 Jan 2020 19:33:21 GMT
expires:
- '-1'
pragma:
@@ -18274,26 +19653,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18307,18 +19686,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18327,7 +19706,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:12 GMT
+ - Wed, 22 Jan 2020 19:33:22 GMT
expires:
- '-1'
pragma:
@@ -18358,26 +19737,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18391,18 +19770,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18411,7 +19790,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:12 GMT
+ - Wed, 22 Jan 2020 19:33:22 GMT
expires:
- '-1'
pragma:
@@ -18442,26 +19821,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18475,18 +19854,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18495,7 +19874,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:14 GMT
+ - Wed, 22 Jan 2020 19:33:24 GMT
expires:
- '-1'
pragma:
@@ -18526,26 +19905,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18559,18 +19938,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18579,7 +19958,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:13 GMT
+ - Wed, 22 Jan 2020 19:33:24 GMT
expires:
- '-1'
pragma:
@@ -18610,26 +19989,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18643,18 +20022,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18663,7 +20042,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:14 GMT
+ - Wed, 22 Jan 2020 19:33:24 GMT
expires:
- '-1'
pragma:
@@ -18694,26 +20073,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18727,18 +20106,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18747,7 +20126,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:15 GMT
+ - Wed, 22 Jan 2020 19:33:25 GMT
expires:
- '-1'
pragma:
@@ -18778,26 +20157,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18811,18 +20190,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18831,7 +20210,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:15 GMT
+ - Wed, 22 Jan 2020 19:33:25 GMT
expires:
- '-1'
pragma:
@@ -18862,26 +20241,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18895,18 +20274,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18915,7 +20294,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:16 GMT
+ - Wed, 22 Jan 2020 19:33:26 GMT
expires:
- '-1'
pragma:
@@ -18946,26 +20325,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -18979,18 +20358,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -18999,7 +20378,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:17 GMT
+ - Wed, 22 Jan 2020 19:33:26 GMT
expires:
- '-1'
pragma:
@@ -19030,26 +20409,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19063,18 +20442,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19083,7 +20462,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:17 GMT
+ - Wed, 22 Jan 2020 19:33:27 GMT
expires:
- '-1'
pragma:
@@ -19114,26 +20493,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19147,18 +20526,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19167,7 +20546,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:18 GMT
+ - Wed, 22 Jan 2020 19:33:28 GMT
expires:
- '-1'
pragma:
@@ -19198,26 +20577,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19231,18 +20610,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19251,7 +20630,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:18 GMT
+ - Wed, 22 Jan 2020 19:33:28 GMT
expires:
- '-1'
pragma:
@@ -19282,26 +20661,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19315,18 +20694,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19335,7 +20714,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:19 GMT
+ - Wed, 22 Jan 2020 19:33:29 GMT
expires:
- '-1'
pragma:
@@ -19366,26 +20745,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19399,18 +20778,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19419,7 +20798,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:20 GMT
+ - Wed, 22 Jan 2020 19:33:30 GMT
expires:
- '-1'
pragma:
@@ -19450,26 +20829,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19483,18 +20862,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19503,7 +20882,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:20 GMT
+ - Wed, 22 Jan 2020 19:33:30 GMT
expires:
- '-1'
pragma:
@@ -19534,26 +20913,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19567,18 +20946,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19587,7 +20966,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:21 GMT
+ - Wed, 22 Jan 2020 19:33:31 GMT
expires:
- '-1'
pragma:
@@ -19618,26 +20997,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19651,18 +21030,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19671,7 +21050,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:21 GMT
+ - Wed, 22 Jan 2020 19:33:31 GMT
expires:
- '-1'
pragma:
@@ -19702,26 +21081,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19735,18 +21114,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19755,7 +21134,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:22 GMT
+ - Wed, 22 Jan 2020 19:33:32 GMT
expires:
- '-1'
pragma:
@@ -19786,26 +21165,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19819,18 +21198,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19839,7 +21218,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:22 GMT
+ - Wed, 22 Jan 2020 19:33:32 GMT
expires:
- '-1'
pragma:
@@ -19870,26 +21249,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19903,18 +21282,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -19923,7 +21302,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:23 GMT
+ - Wed, 22 Jan 2020 19:33:33 GMT
expires:
- '-1'
pragma:
@@ -19954,26 +21333,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -19987,18 +21366,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20007,7 +21386,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:24 GMT
+ - Wed, 22 Jan 2020 19:33:34 GMT
expires:
- '-1'
pragma:
@@ -20038,26 +21417,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20071,18 +21450,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20091,7 +21470,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:24 GMT
+ - Wed, 22 Jan 2020 19:33:34 GMT
expires:
- '-1'
pragma:
@@ -20122,26 +21501,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20155,18 +21534,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20175,7 +21554,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:25 GMT
+ - Wed, 22 Jan 2020 19:33:35 GMT
expires:
- '-1'
pragma:
@@ -20206,26 +21585,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20239,18 +21618,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20259,7 +21638,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:25 GMT
+ - Wed, 22 Jan 2020 19:33:35 GMT
expires:
- '-1'
pragma:
@@ -20290,26 +21669,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20323,18 +21702,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20343,7 +21722,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:26 GMT
+ - Wed, 22 Jan 2020 19:33:35 GMT
expires:
- '-1'
pragma:
@@ -20374,26 +21753,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20407,18 +21786,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20427,7 +21806,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:27 GMT
+ - Wed, 22 Jan 2020 19:33:37 GMT
expires:
- '-1'
pragma:
@@ -20458,26 +21837,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20491,18 +21870,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20511,7 +21890,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:27 GMT
+ - Wed, 22 Jan 2020 19:33:37 GMT
expires:
- '-1'
pragma:
@@ -20542,26 +21921,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20575,18 +21954,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20595,7 +21974,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:27 GMT
+ - Wed, 22 Jan 2020 19:33:37 GMT
expires:
- '-1'
pragma:
@@ -20626,26 +22005,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20659,18 +22038,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20679,7 +22058,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:28 GMT
+ - Wed, 22 Jan 2020 19:33:38 GMT
expires:
- '-1'
pragma:
@@ -20710,26 +22089,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20743,18 +22122,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20763,7 +22142,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:29 GMT
+ - Wed, 22 Jan 2020 19:33:39 GMT
expires:
- '-1'
pragma:
@@ -20794,26 +22173,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20827,18 +22206,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20847,7 +22226,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:29 GMT
+ - Wed, 22 Jan 2020 19:33:39 GMT
expires:
- '-1'
pragma:
@@ -20878,26 +22257,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20911,18 +22290,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -20931,7 +22310,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:30 GMT
+ - Wed, 22 Jan 2020 19:33:40 GMT
expires:
- '-1'
pragma:
@@ -20962,26 +22341,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -20995,18 +22374,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21015,7 +22394,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:31 GMT
+ - Wed, 22 Jan 2020 19:33:40 GMT
expires:
- '-1'
pragma:
@@ -21046,26 +22425,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21079,18 +22458,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21099,7 +22478,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:31 GMT
+ - Wed, 22 Jan 2020 19:33:41 GMT
expires:
- '-1'
pragma:
@@ -21130,26 +22509,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21163,18 +22542,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21183,7 +22562,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:32 GMT
+ - Wed, 22 Jan 2020 19:33:42 GMT
expires:
- '-1'
pragma:
@@ -21214,26 +22593,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21247,18 +22626,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21267,7 +22646,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:33 GMT
+ - Wed, 22 Jan 2020 19:33:42 GMT
expires:
- '-1'
pragma:
@@ -21298,26 +22677,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21331,18 +22710,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21351,7 +22730,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:33 GMT
+ - Wed, 22 Jan 2020 19:33:43 GMT
expires:
- '-1'
pragma:
@@ -21382,26 +22761,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21415,18 +22794,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21435,7 +22814,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:33 GMT
+ - Wed, 22 Jan 2020 19:33:43 GMT
expires:
- '-1'
pragma:
@@ -21466,26 +22845,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21499,18 +22878,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21519,7 +22898,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:34 GMT
+ - Wed, 22 Jan 2020 19:33:44 GMT
expires:
- '-1'
pragma:
@@ -21550,26 +22929,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21583,18 +22962,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21603,7 +22982,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:35 GMT
+ - Wed, 22 Jan 2020 19:33:45 GMT
expires:
- '-1'
pragma:
@@ -21634,26 +23013,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21667,18 +23046,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21687,7 +23066,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:35 GMT
+ - Wed, 22 Jan 2020 19:33:45 GMT
expires:
- '-1'
pragma:
@@ -21718,26 +23097,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21751,18 +23130,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21771,7 +23150,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:36 GMT
+ - Wed, 22 Jan 2020 19:33:46 GMT
expires:
- '-1'
pragma:
@@ -21802,26 +23181,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21835,18 +23214,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21855,7 +23234,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:37 GMT
+ - Wed, 22 Jan 2020 19:33:46 GMT
expires:
- '-1'
pragma:
@@ -21886,26 +23265,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -21919,18 +23298,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -21939,7 +23318,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:37 GMT
+ - Wed, 22 Jan 2020 19:33:47 GMT
expires:
- '-1'
pragma:
@@ -21970,26 +23349,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22003,18 +23382,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22023,7 +23402,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:38 GMT
+ - Wed, 22 Jan 2020 19:33:47 GMT
expires:
- '-1'
pragma:
@@ -22054,26 +23433,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22087,18 +23466,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22107,7 +23486,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:38 GMT
+ - Wed, 22 Jan 2020 19:33:48 GMT
expires:
- '-1'
pragma:
@@ -22138,26 +23517,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22171,18 +23550,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22191,7 +23570,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:39 GMT
+ - Wed, 22 Jan 2020 19:33:49 GMT
expires:
- '-1'
pragma:
@@ -22222,26 +23601,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22255,18 +23634,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22275,7 +23654,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:40 GMT
+ - Wed, 22 Jan 2020 19:33:49 GMT
expires:
- '-1'
pragma:
@@ -22306,26 +23685,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22339,18 +23718,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22359,7 +23738,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:41 GMT
+ - Wed, 22 Jan 2020 19:33:50 GMT
expires:
- '-1'
pragma:
@@ -22390,26 +23769,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22423,18 +23802,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22443,7 +23822,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:41 GMT
+ - Wed, 22 Jan 2020 19:33:51 GMT
expires:
- '-1'
pragma:
@@ -22474,26 +23853,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22507,18 +23886,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22527,7 +23906,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:42 GMT
+ - Wed, 22 Jan 2020 19:33:52 GMT
expires:
- '-1'
pragma:
@@ -22558,26 +23937,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22591,18 +23970,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22611,7 +23990,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:42 GMT
+ - Wed, 22 Jan 2020 19:33:52 GMT
expires:
- '-1'
pragma:
@@ -22642,26 +24021,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22675,18 +24054,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22695,7 +24074,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:43 GMT
+ - Wed, 22 Jan 2020 19:33:53 GMT
expires:
- '-1'
pragma:
@@ -22726,26 +24105,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22759,18 +24138,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22779,7 +24158,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:43 GMT
+ - Wed, 22 Jan 2020 19:33:54 GMT
expires:
- '-1'
pragma:
@@ -22810,26 +24189,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22843,18 +24222,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22863,7 +24242,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:44 GMT
+ - Wed, 22 Jan 2020 19:33:54 GMT
expires:
- '-1'
pragma:
@@ -22894,26 +24273,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -22927,18 +24306,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -22947,7 +24326,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:45 GMT
+ - Wed, 22 Jan 2020 19:33:55 GMT
expires:
- '-1'
pragma:
@@ -22978,26 +24357,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23011,18 +24390,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23031,7 +24410,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:45 GMT
+ - Wed, 22 Jan 2020 19:33:55 GMT
expires:
- '-1'
pragma:
@@ -23062,26 +24441,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23095,18 +24474,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23115,7 +24494,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:46 GMT
+ - Wed, 22 Jan 2020 19:33:56 GMT
expires:
- '-1'
pragma:
@@ -23146,26 +24525,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23179,18 +24558,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23199,7 +24578,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:46 GMT
+ - Wed, 22 Jan 2020 19:33:57 GMT
expires:
- '-1'
pragma:
@@ -23230,26 +24609,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23263,18 +24642,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23283,7 +24662,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:47 GMT
+ - Wed, 22 Jan 2020 19:33:58 GMT
expires:
- '-1'
pragma:
@@ -23314,26 +24693,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23347,18 +24726,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23367,7 +24746,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:48 GMT
+ - Wed, 22 Jan 2020 19:33:57 GMT
expires:
- '-1'
pragma:
@@ -23398,26 +24777,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23431,18 +24810,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23451,7 +24830,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:48 GMT
+ - Wed, 22 Jan 2020 19:33:59 GMT
expires:
- '-1'
pragma:
@@ -23482,26 +24861,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23515,18 +24894,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23535,7 +24914,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:50 GMT
+ - Wed, 22 Jan 2020 19:33:59 GMT
expires:
- '-1'
pragma:
@@ -23566,26 +24945,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23599,18 +24978,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23619,7 +24998,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:49 GMT
+ - Wed, 22 Jan 2020 19:33:59 GMT
expires:
- '-1'
pragma:
@@ -23650,26 +25029,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23683,18 +25062,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23703,7 +25082,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:50 GMT
+ - Wed, 22 Jan 2020 19:34:00 GMT
expires:
- '-1'
pragma:
@@ -23734,26 +25113,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23767,18 +25146,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23787,7 +25166,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:51 GMT
+ - Wed, 22 Jan 2020 19:34:02 GMT
expires:
- '-1'
pragma:
@@ -23818,26 +25197,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23851,18 +25230,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23871,7 +25250,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:51 GMT
+ - Wed, 22 Jan 2020 19:34:02 GMT
expires:
- '-1'
pragma:
@@ -23902,26 +25281,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -23935,18 +25314,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -23955,7 +25334,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:52 GMT
+ - Wed, 22 Jan 2020 19:34:02 GMT
expires:
- '-1'
pragma:
@@ -23986,26 +25365,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24019,18 +25398,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24039,7 +25418,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:52 GMT
+ - Wed, 22 Jan 2020 19:34:03 GMT
expires:
- '-1'
pragma:
@@ -24070,26 +25449,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24103,18 +25482,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24123,7 +25502,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:53 GMT
+ - Wed, 22 Jan 2020 19:34:03 GMT
expires:
- '-1'
pragma:
@@ -24154,26 +25533,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24187,18 +25566,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24207,7 +25586,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:54 GMT
+ - Wed, 22 Jan 2020 19:34:04 GMT
expires:
- '-1'
pragma:
@@ -24238,26 +25617,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24271,18 +25650,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24291,7 +25670,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:54 GMT
+ - Wed, 22 Jan 2020 19:34:05 GMT
expires:
- '-1'
pragma:
@@ -24322,26 +25701,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24355,18 +25734,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24375,7 +25754,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:55 GMT
+ - Wed, 22 Jan 2020 19:34:05 GMT
expires:
- '-1'
pragma:
@@ -24406,26 +25785,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24439,18 +25818,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24459,7 +25838,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:56 GMT
+ - Wed, 22 Jan 2020 19:34:06 GMT
expires:
- '-1'
pragma:
@@ -24490,26 +25869,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24523,18 +25902,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24543,7 +25922,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:56 GMT
+ - Wed, 22 Jan 2020 19:34:07 GMT
expires:
- '-1'
pragma:
@@ -24574,26 +25953,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24607,18 +25986,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24627,7 +26006,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:57 GMT
+ - Wed, 22 Jan 2020 19:34:08 GMT
expires:
- '-1'
pragma:
@@ -24658,26 +26037,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24691,18 +26070,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24711,7 +26090,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:57 GMT
+ - Wed, 22 Jan 2020 19:34:08 GMT
expires:
- '-1'
pragma:
@@ -24742,26 +26121,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24775,18 +26154,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24795,7 +26174,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:58 GMT
+ - Wed, 22 Jan 2020 19:34:08 GMT
expires:
- '-1'
pragma:
@@ -24826,26 +26205,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24859,18 +26238,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24879,7 +26258,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:59 GMT
+ - Wed, 22 Jan 2020 19:34:09 GMT
expires:
- '-1'
pragma:
@@ -24910,26 +26289,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -24943,18 +26322,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -24963,7 +26342,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 00:59:59 GMT
+ - Wed, 22 Jan 2020 19:34:09 GMT
expires:
- '-1'
pragma:
@@ -24994,26 +26373,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25027,18 +26406,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25047,7 +26426,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:00 GMT
+ - Wed, 22 Jan 2020 19:34:10 GMT
expires:
- '-1'
pragma:
@@ -25078,26 +26457,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25111,18 +26490,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25131,7 +26510,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:01 GMT
+ - Wed, 22 Jan 2020 19:34:11 GMT
expires:
- '-1'
pragma:
@@ -25162,26 +26541,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25195,18 +26574,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25215,7 +26594,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:02 GMT
+ - Wed, 22 Jan 2020 19:34:12 GMT
expires:
- '-1'
pragma:
@@ -25246,26 +26625,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25279,18 +26658,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25299,7 +26678,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:03 GMT
+ - Wed, 22 Jan 2020 19:34:12 GMT
expires:
- '-1'
pragma:
@@ -25330,26 +26709,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25363,18 +26742,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25383,7 +26762,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:03 GMT
+ - Wed, 22 Jan 2020 19:34:13 GMT
expires:
- '-1'
pragma:
@@ -25414,26 +26793,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25447,18 +26826,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25467,7 +26846,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:03 GMT
+ - Wed, 22 Jan 2020 19:34:13 GMT
expires:
- '-1'
pragma:
@@ -25498,26 +26877,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25531,18 +26910,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25551,7 +26930,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:04 GMT
+ - Wed, 22 Jan 2020 19:34:14 GMT
expires:
- '-1'
pragma:
@@ -25582,26 +26961,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25615,18 +26994,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25635,7 +27014,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:05 GMT
+ - Wed, 22 Jan 2020 19:34:15 GMT
expires:
- '-1'
pragma:
@@ -25666,26 +27045,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25699,18 +27078,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25719,7 +27098,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:05 GMT
+ - Wed, 22 Jan 2020 19:34:15 GMT
expires:
- '-1'
pragma:
@@ -25750,26 +27129,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25783,18 +27162,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25803,7 +27182,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:07 GMT
+ - Wed, 22 Jan 2020 19:34:16 GMT
expires:
- '-1'
pragma:
@@ -25834,26 +27213,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25867,18 +27246,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25887,7 +27266,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:06 GMT
+ - Wed, 22 Jan 2020 19:34:17 GMT
expires:
- '-1'
pragma:
@@ -25918,26 +27297,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -25951,18 +27330,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -25971,7 +27350,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:08 GMT
+ - Wed, 22 Jan 2020 19:34:17 GMT
expires:
- '-1'
pragma:
@@ -26002,26 +27381,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26035,18 +27414,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26055,7 +27434,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:08 GMT
+ - Wed, 22 Jan 2020 19:34:18 GMT
expires:
- '-1'
pragma:
@@ -26086,26 +27465,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26119,18 +27498,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26139,7 +27518,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:09 GMT
+ - Wed, 22 Jan 2020 19:34:19 GMT
expires:
- '-1'
pragma:
@@ -26170,26 +27549,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26203,18 +27582,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26223,7 +27602,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:10 GMT
+ - Wed, 22 Jan 2020 19:34:20 GMT
expires:
- '-1'
pragma:
@@ -26254,26 +27633,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26287,18 +27666,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26307,7 +27686,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:10 GMT
+ - Wed, 22 Jan 2020 19:34:20 GMT
expires:
- '-1'
pragma:
@@ -26338,26 +27717,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26371,18 +27750,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26391,7 +27770,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:11 GMT
+ - Wed, 22 Jan 2020 19:34:21 GMT
expires:
- '-1'
pragma:
@@ -26422,26 +27801,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26455,18 +27834,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26475,7 +27854,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:11 GMT
+ - Wed, 22 Jan 2020 19:34:21 GMT
expires:
- '-1'
pragma:
@@ -26506,26 +27885,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26539,18 +27918,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26559,7 +27938,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:12 GMT
+ - Wed, 22 Jan 2020 19:34:22 GMT
expires:
- '-1'
pragma:
@@ -26590,26 +27969,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26623,18 +28002,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26643,7 +28022,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:13 GMT
+ - Wed, 22 Jan 2020 19:34:22 GMT
expires:
- '-1'
pragma:
@@ -26674,26 +28053,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26707,18 +28086,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26727,7 +28106,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:13 GMT
+ - Wed, 22 Jan 2020 19:34:23 GMT
expires:
- '-1'
pragma:
@@ -26758,26 +28137,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26791,18 +28170,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26811,7 +28190,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:15 GMT
+ - Wed, 22 Jan 2020 19:34:23 GMT
expires:
- '-1'
pragma:
@@ -26842,26 +28221,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26875,18 +28254,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26895,7 +28274,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:15 GMT
+ - Wed, 22 Jan 2020 19:34:24 GMT
expires:
- '-1'
pragma:
@@ -26926,26 +28305,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -26959,18 +28338,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -26979,7 +28358,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:15 GMT
+ - Wed, 22 Jan 2020 19:34:25 GMT
expires:
- '-1'
pragma:
@@ -27010,26 +28389,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27043,18 +28422,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27063,7 +28442,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:16 GMT
+ - Wed, 22 Jan 2020 19:34:26 GMT
expires:
- '-1'
pragma:
@@ -27094,26 +28473,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27127,18 +28506,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27147,7 +28526,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:17 GMT
+ - Wed, 22 Jan 2020 19:34:26 GMT
expires:
- '-1'
pragma:
@@ -27178,26 +28557,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27211,18 +28590,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27231,7 +28610,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:17 GMT
+ - Wed, 22 Jan 2020 19:34:27 GMT
expires:
- '-1'
pragma:
@@ -27262,26 +28641,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27295,18 +28674,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27315,7 +28694,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:18 GMT
+ - Wed, 22 Jan 2020 19:34:28 GMT
expires:
- '-1'
pragma:
@@ -27346,26 +28725,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27379,18 +28758,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27399,7 +28778,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:19 GMT
+ - Wed, 22 Jan 2020 19:34:29 GMT
expires:
- '-1'
pragma:
@@ -27430,26 +28809,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27463,18 +28842,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27483,7 +28862,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:20 GMT
+ - Wed, 22 Jan 2020 19:34:28 GMT
expires:
- '-1'
pragma:
@@ -27514,26 +28893,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27547,18 +28926,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27567,7 +28946,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:20 GMT
+ - Wed, 22 Jan 2020 19:34:30 GMT
expires:
- '-1'
pragma:
@@ -27598,26 +28977,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27631,18 +29010,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27651,7 +29030,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:21 GMT
+ - Wed, 22 Jan 2020 19:34:30 GMT
expires:
- '-1'
pragma:
@@ -27682,26 +29061,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27715,18 +29094,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27735,7 +29114,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:21 GMT
+ - Wed, 22 Jan 2020 19:34:30 GMT
expires:
- '-1'
pragma:
@@ -27766,26 +29145,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27799,18 +29178,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27819,7 +29198,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:23 GMT
+ - Wed, 22 Jan 2020 19:34:31 GMT
expires:
- '-1'
pragma:
@@ -27850,26 +29229,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27883,18 +29262,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27903,7 +29282,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:23 GMT
+ - Wed, 22 Jan 2020 19:34:32 GMT
expires:
- '-1'
pragma:
@@ -27934,26 +29313,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -27967,18 +29346,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -27987,7 +29366,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:23 GMT
+ - Wed, 22 Jan 2020 19:34:32 GMT
expires:
- '-1'
pragma:
@@ -28018,26 +29397,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28051,18 +29430,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28071,7 +29450,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:24 GMT
+ - Wed, 22 Jan 2020 19:34:34 GMT
expires:
- '-1'
pragma:
@@ -28102,26 +29481,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28135,18 +29514,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28155,7 +29534,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:25 GMT
+ - Wed, 22 Jan 2020 19:34:34 GMT
expires:
- '-1'
pragma:
@@ -28186,26 +29565,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28219,18 +29598,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28239,7 +29618,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:25 GMT
+ - Wed, 22 Jan 2020 19:34:35 GMT
expires:
- '-1'
pragma:
@@ -28270,26 +29649,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28303,18 +29682,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28323,7 +29702,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:26 GMT
+ - Wed, 22 Jan 2020 19:34:45 GMT
expires:
- '-1'
pragma:
@@ -28354,26 +29733,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28387,18 +29766,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28407,7 +29786,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:27 GMT
+ - Wed, 22 Jan 2020 19:34:46 GMT
expires:
- '-1'
pragma:
@@ -28438,26 +29817,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28471,18 +29850,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28491,7 +29870,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:28 GMT
+ - Wed, 22 Jan 2020 19:34:46 GMT
expires:
- '-1'
pragma:
@@ -28522,26 +29901,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28555,18 +29934,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28575,7 +29954,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:28 GMT
+ - Wed, 22 Jan 2020 19:34:46 GMT
expires:
- '-1'
pragma:
@@ -28606,26 +29985,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28639,18 +30018,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28659,7 +30038,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:29 GMT
+ - Wed, 22 Jan 2020 19:34:47 GMT
expires:
- '-1'
pragma:
@@ -28690,26 +30069,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28723,18 +30102,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28743,7 +30122,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:30 GMT
+ - Wed, 22 Jan 2020 19:34:48 GMT
expires:
- '-1'
pragma:
@@ -28774,26 +30153,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28807,18 +30186,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28827,7 +30206,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:30 GMT
+ - Wed, 22 Jan 2020 19:34:48 GMT
expires:
- '-1'
pragma:
@@ -28858,26 +30237,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28891,18 +30270,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28911,7 +30290,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:32 GMT
+ - Wed, 22 Jan 2020 19:34:49 GMT
expires:
- '-1'
pragma:
@@ -28942,26 +30321,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -28975,18 +30354,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -28995,7 +30374,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:32 GMT
+ - Wed, 22 Jan 2020 19:34:50 GMT
expires:
- '-1'
pragma:
@@ -29026,26 +30405,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29059,18 +30438,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29079,7 +30458,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:32 GMT
+ - Wed, 22 Jan 2020 19:34:51 GMT
expires:
- '-1'
pragma:
@@ -29110,26 +30489,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29143,18 +30522,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29163,7 +30542,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:33 GMT
+ - Wed, 22 Jan 2020 19:34:51 GMT
expires:
- '-1'
pragma:
@@ -29194,26 +30573,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29227,18 +30606,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29247,7 +30626,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:34 GMT
+ - Wed, 22 Jan 2020 19:34:52 GMT
expires:
- '-1'
pragma:
@@ -29278,26 +30657,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29311,18 +30690,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29331,7 +30710,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:35 GMT
+ - Wed, 22 Jan 2020 19:34:53 GMT
expires:
- '-1'
pragma:
@@ -29362,26 +30741,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29395,18 +30774,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29415,7 +30794,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:35 GMT
+ - Wed, 22 Jan 2020 19:34:53 GMT
expires:
- '-1'
pragma:
@@ -29446,26 +30825,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29479,18 +30858,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29499,7 +30878,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:36 GMT
+ - Wed, 22 Jan 2020 19:34:54 GMT
expires:
- '-1'
pragma:
@@ -29530,26 +30909,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29563,18 +30942,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29583,7 +30962,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:36 GMT
+ - Wed, 22 Jan 2020 19:34:54 GMT
expires:
- '-1'
pragma:
@@ -29614,26 +30993,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29647,18 +31026,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29667,7 +31046,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:37 GMT
+ - Wed, 22 Jan 2020 19:34:55 GMT
expires:
- '-1'
pragma:
@@ -29698,26 +31077,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29731,18 +31110,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29751,7 +31130,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:37 GMT
+ - Wed, 22 Jan 2020 19:34:56 GMT
expires:
- '-1'
pragma:
@@ -29782,26 +31161,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29815,18 +31194,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29835,7 +31214,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:38 GMT
+ - Wed, 22 Jan 2020 19:34:57 GMT
expires:
- '-1'
pragma:
@@ -29866,26 +31245,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29899,18 +31278,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -29919,7 +31298,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:39 GMT
+ - Wed, 22 Jan 2020 19:34:58 GMT
expires:
- '-1'
pragma:
@@ -29950,26 +31329,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -29983,18 +31362,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30003,7 +31382,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:40 GMT
+ - Wed, 22 Jan 2020 19:34:58 GMT
expires:
- '-1'
pragma:
@@ -30034,26 +31413,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30067,18 +31446,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30087,7 +31466,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:40 GMT
+ - Wed, 22 Jan 2020 19:34:59 GMT
expires:
- '-1'
pragma:
@@ -30118,26 +31497,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30151,18 +31530,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30171,7 +31550,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:42 GMT
+ - Wed, 22 Jan 2020 19:35:00 GMT
expires:
- '-1'
pragma:
@@ -30202,26 +31581,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30235,18 +31614,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30255,7 +31634,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:42 GMT
+ - Wed, 22 Jan 2020 19:35:01 GMT
expires:
- '-1'
pragma:
@@ -30286,26 +31665,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30319,18 +31698,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30339,7 +31718,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:43 GMT
+ - Wed, 22 Jan 2020 19:35:01 GMT
expires:
- '-1'
pragma:
@@ -30370,26 +31749,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30403,18 +31782,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30423,7 +31802,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:43 GMT
+ - Wed, 22 Jan 2020 19:35:02 GMT
expires:
- '-1'
pragma:
@@ -30454,26 +31833,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30487,18 +31866,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30507,7 +31886,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:44 GMT
+ - Wed, 22 Jan 2020 19:35:02 GMT
expires:
- '-1'
pragma:
@@ -30538,26 +31917,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30571,18 +31950,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30591,7 +31970,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:45 GMT
+ - Wed, 22 Jan 2020 19:35:03 GMT
expires:
- '-1'
pragma:
@@ -30622,26 +32001,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30655,18 +32034,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30675,7 +32054,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:46 GMT
+ - Wed, 22 Jan 2020 19:35:04 GMT
expires:
- '-1'
pragma:
@@ -30706,26 +32085,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30739,18 +32118,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30759,7 +32138,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:46 GMT
+ - Wed, 22 Jan 2020 19:35:04 GMT
expires:
- '-1'
pragma:
@@ -30790,26 +32169,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30823,18 +32202,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30843,7 +32222,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:47 GMT
+ - Wed, 22 Jan 2020 19:35:05 GMT
expires:
- '-1'
pragma:
@@ -30874,26 +32253,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30907,18 +32286,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -30927,7 +32306,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:47 GMT
+ - Wed, 22 Jan 2020 19:35:05 GMT
expires:
- '-1'
pragma:
@@ -30958,26 +32337,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -30991,18 +32370,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31011,7 +32390,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:49 GMT
+ - Wed, 22 Jan 2020 19:35:06 GMT
expires:
- '-1'
pragma:
@@ -31042,26 +32421,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31075,18 +32454,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31095,7 +32474,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:49 GMT
+ - Wed, 22 Jan 2020 19:35:07 GMT
expires:
- '-1'
pragma:
@@ -31126,26 +32505,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31159,18 +32538,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31179,7 +32558,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:50 GMT
+ - Wed, 22 Jan 2020 19:35:08 GMT
expires:
- '-1'
pragma:
@@ -31210,26 +32589,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31243,18 +32622,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31263,7 +32642,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:51 GMT
+ - Wed, 22 Jan 2020 19:35:08 GMT
expires:
- '-1'
pragma:
@@ -31294,26 +32673,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31327,18 +32706,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31347,7 +32726,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:51 GMT
+ - Wed, 22 Jan 2020 19:35:09 GMT
expires:
- '-1'
pragma:
@@ -31378,26 +32757,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31411,18 +32790,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31431,7 +32810,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:53 GMT
+ - Wed, 22 Jan 2020 19:35:10 GMT
expires:
- '-1'
pragma:
@@ -31462,26 +32841,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31495,18 +32874,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31515,7 +32894,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:53 GMT
+ - Wed, 22 Jan 2020 19:35:10 GMT
expires:
- '-1'
pragma:
@@ -31546,26 +32925,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31579,18 +32958,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31599,7 +32978,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:53 GMT
+ - Wed, 22 Jan 2020 19:35:11 GMT
expires:
- '-1'
pragma:
@@ -31630,26 +33009,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31663,18 +33042,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31683,7 +33062,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:55 GMT
+ - Wed, 22 Jan 2020 19:35:12 GMT
expires:
- '-1'
pragma:
@@ -31714,26 +33093,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31747,18 +33126,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31767,7 +33146,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:55 GMT
+ - Wed, 22 Jan 2020 19:35:12 GMT
expires:
- '-1'
pragma:
@@ -31798,26 +33177,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31831,18 +33210,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31851,7 +33230,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:56 GMT
+ - Wed, 22 Jan 2020 19:35:13 GMT
expires:
- '-1'
pragma:
@@ -31882,26 +33261,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31915,18 +33294,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -31935,7 +33314,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:57 GMT
+ - Wed, 22 Jan 2020 19:35:14 GMT
expires:
- '-1'
pragma:
@@ -31966,26 +33345,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -31999,18 +33378,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32019,7 +33398,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:57 GMT
+ - Wed, 22 Jan 2020 19:35:15 GMT
expires:
- '-1'
pragma:
@@ -32050,26 +33429,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32083,18 +33462,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32103,7 +33482,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:58 GMT
+ - Wed, 22 Jan 2020 19:35:15 GMT
expires:
- '-1'
pragma:
@@ -32134,26 +33513,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32167,18 +33546,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32187,7 +33566,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:58 GMT
+ - Wed, 22 Jan 2020 19:35:16 GMT
expires:
- '-1'
pragma:
@@ -32218,26 +33597,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32251,18 +33630,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32271,7 +33650,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:00:59 GMT
+ - Wed, 22 Jan 2020 19:35:17 GMT
expires:
- '-1'
pragma:
@@ -32302,26 +33681,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32335,18 +33714,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32355,7 +33734,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:00 GMT
+ - Wed, 22 Jan 2020 19:35:17 GMT
expires:
- '-1'
pragma:
@@ -32386,26 +33765,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32419,18 +33798,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32439,7 +33818,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:02 GMT
+ - Wed, 22 Jan 2020 19:35:17 GMT
expires:
- '-1'
pragma:
@@ -32470,26 +33849,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32503,18 +33882,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32523,7 +33902,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:02 GMT
+ - Wed, 22 Jan 2020 19:35:19 GMT
expires:
- '-1'
pragma:
@@ -32554,26 +33933,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32587,18 +33966,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32607,7 +33986,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:03 GMT
+ - Wed, 22 Jan 2020 19:35:20 GMT
expires:
- '-1'
pragma:
@@ -32638,26 +34017,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32671,18 +34050,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32691,7 +34070,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:04 GMT
+ - Wed, 22 Jan 2020 19:35:20 GMT
expires:
- '-1'
pragma:
@@ -32722,26 +34101,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32755,18 +34134,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32775,7 +34154,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:05 GMT
+ - Wed, 22 Jan 2020 19:35:20 GMT
expires:
- '-1'
pragma:
@@ -32806,26 +34185,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32839,18 +34218,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32859,7 +34238,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:05 GMT
+ - Wed, 22 Jan 2020 19:35:21 GMT
expires:
- '-1'
pragma:
@@ -32890,26 +34269,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -32923,18 +34302,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -32943,7 +34322,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:06 GMT
+ - Wed, 22 Jan 2020 19:35:22 GMT
expires:
- '-1'
pragma:
@@ -32974,26 +34353,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33007,18 +34386,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33027,7 +34406,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:07 GMT
+ - Wed, 22 Jan 2020 19:35:23 GMT
expires:
- '-1'
pragma:
@@ -33058,26 +34437,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33091,18 +34470,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33111,7 +34490,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:07 GMT
+ - Wed, 22 Jan 2020 19:35:24 GMT
expires:
- '-1'
pragma:
@@ -33142,26 +34521,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33175,18 +34554,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33195,7 +34574,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:08 GMT
+ - Wed, 22 Jan 2020 19:35:24 GMT
expires:
- '-1'
pragma:
@@ -33226,26 +34605,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33259,18 +34638,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33279,7 +34658,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:09 GMT
+ - Wed, 22 Jan 2020 19:35:25 GMT
expires:
- '-1'
pragma:
@@ -33310,26 +34689,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33343,18 +34722,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33363,7 +34742,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:10 GMT
+ - Wed, 22 Jan 2020 19:35:26 GMT
expires:
- '-1'
pragma:
@@ -33394,26 +34773,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33427,18 +34806,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33447,7 +34826,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:10 GMT
+ - Wed, 22 Jan 2020 19:35:27 GMT
expires:
- '-1'
pragma:
@@ -33478,26 +34857,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33511,18 +34890,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33531,7 +34910,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:11 GMT
+ - Wed, 22 Jan 2020 19:35:27 GMT
expires:
- '-1'
pragma:
@@ -33562,26 +34941,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33595,18 +34974,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33615,7 +34994,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:11 GMT
+ - Wed, 22 Jan 2020 19:35:28 GMT
expires:
- '-1'
pragma:
@@ -33646,26 +35025,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33679,18 +35058,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33699,7 +35078,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:12 GMT
+ - Wed, 22 Jan 2020 19:35:28 GMT
expires:
- '-1'
pragma:
@@ -33730,26 +35109,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33763,18 +35142,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33783,7 +35162,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:13 GMT
+ - Wed, 22 Jan 2020 19:35:29 GMT
expires:
- '-1'
pragma:
@@ -33814,26 +35193,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33847,18 +35226,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33867,7 +35246,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:15 GMT
+ - Wed, 22 Jan 2020 19:35:29 GMT
expires:
- '-1'
pragma:
@@ -33898,26 +35277,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -33931,18 +35310,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -33951,7 +35330,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:15 GMT
+ - Wed, 22 Jan 2020 19:35:30 GMT
expires:
- '-1'
pragma:
@@ -33982,26 +35361,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34015,18 +35394,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34035,7 +35414,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:16 GMT
+ - Wed, 22 Jan 2020 19:35:31 GMT
expires:
- '-1'
pragma:
@@ -34066,26 +35445,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34099,18 +35478,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34119,7 +35498,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:16 GMT
+ - Wed, 22 Jan 2020 19:35:32 GMT
expires:
- '-1'
pragma:
@@ -34150,26 +35529,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34183,18 +35562,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34203,7 +35582,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:17 GMT
+ - Wed, 22 Jan 2020 19:35:33 GMT
expires:
- '-1'
pragma:
@@ -34234,26 +35613,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34267,18 +35646,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34287,7 +35666,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:18 GMT
+ - Wed, 22 Jan 2020 19:35:34 GMT
expires:
- '-1'
pragma:
@@ -34318,26 +35697,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34351,18 +35730,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34371,7 +35750,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:18 GMT
+ - Wed, 22 Jan 2020 19:35:34 GMT
expires:
- '-1'
pragma:
@@ -34402,26 +35781,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34435,18 +35814,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34455,7 +35834,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:20 GMT
+ - Wed, 22 Jan 2020 19:35:35 GMT
expires:
- '-1'
pragma:
@@ -34486,26 +35865,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34519,18 +35898,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34539,7 +35918,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:20 GMT
+ - Wed, 22 Jan 2020 19:35:36 GMT
expires:
- '-1'
pragma:
@@ -34570,26 +35949,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34603,18 +35982,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34623,7 +36002,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:20 GMT
+ - Wed, 22 Jan 2020 19:35:36 GMT
expires:
- '-1'
pragma:
@@ -34654,26 +36033,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34687,18 +36066,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34707,7 +36086,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:22 GMT
+ - Wed, 22 Jan 2020 19:35:38 GMT
expires:
- '-1'
pragma:
@@ -34738,26 +36117,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34771,18 +36150,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34791,7 +36170,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:22 GMT
+ - Wed, 22 Jan 2020 19:35:38 GMT
expires:
- '-1'
pragma:
@@ -34822,26 +36201,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34855,18 +36234,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34875,7 +36254,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:23 GMT
+ - Wed, 22 Jan 2020 19:35:39 GMT
expires:
- '-1'
pragma:
@@ -34906,26 +36285,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -34939,18 +36318,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -34959,7 +36338,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:24 GMT
+ - Wed, 22 Jan 2020 19:35:39 GMT
expires:
- '-1'
pragma:
@@ -34990,26 +36369,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35023,18 +36402,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35043,7 +36422,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:24 GMT
+ - Wed, 22 Jan 2020 19:35:41 GMT
expires:
- '-1'
pragma:
@@ -35074,26 +36453,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35107,18 +36486,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35127,7 +36506,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:25 GMT
+ - Wed, 22 Jan 2020 19:35:42 GMT
expires:
- '-1'
pragma:
@@ -35158,26 +36537,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35191,18 +36570,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35211,7 +36590,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:26 GMT
+ - Wed, 22 Jan 2020 19:35:42 GMT
expires:
- '-1'
pragma:
@@ -35242,26 +36621,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35275,18 +36654,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35295,7 +36674,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:27 GMT
+ - Wed, 22 Jan 2020 19:35:43 GMT
expires:
- '-1'
pragma:
@@ -35326,26 +36705,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35359,18 +36738,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35379,7 +36758,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:28 GMT
+ - Wed, 22 Jan 2020 19:35:44 GMT
expires:
- '-1'
pragma:
@@ -35410,26 +36789,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35443,18 +36822,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35463,7 +36842,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:28 GMT
+ - Wed, 22 Jan 2020 19:35:44 GMT
expires:
- '-1'
pragma:
@@ -35494,26 +36873,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35527,18 +36906,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35547,7 +36926,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:29 GMT
+ - Wed, 22 Jan 2020 19:35:46 GMT
expires:
- '-1'
pragma:
@@ -35578,26 +36957,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35611,18 +36990,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35631,7 +37010,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:30 GMT
+ - Wed, 22 Jan 2020 19:35:46 GMT
expires:
- '-1'
pragma:
@@ -35662,26 +37041,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35695,18 +37074,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35715,7 +37094,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:31 GMT
+ - Wed, 22 Jan 2020 19:35:47 GMT
expires:
- '-1'
pragma:
@@ -35746,26 +37125,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35779,18 +37158,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35799,7 +37178,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:31 GMT
+ - Wed, 22 Jan 2020 19:35:47 GMT
expires:
- '-1'
pragma:
@@ -35830,26 +37209,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35863,18 +37242,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35883,7 +37262,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:32 GMT
+ - Wed, 22 Jan 2020 19:35:48 GMT
expires:
- '-1'
pragma:
@@ -35914,26 +37293,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -35947,18 +37326,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -35967,7 +37346,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:32 GMT
+ - Wed, 22 Jan 2020 19:35:49 GMT
expires:
- '-1'
pragma:
@@ -35998,26 +37377,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36031,18 +37410,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36051,7 +37430,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:33 GMT
+ - Wed, 22 Jan 2020 19:35:50 GMT
expires:
- '-1'
pragma:
@@ -36082,26 +37461,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36115,18 +37494,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36135,7 +37514,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:34 GMT
+ - Wed, 22 Jan 2020 19:35:51 GMT
expires:
- '-1'
pragma:
@@ -36166,26 +37545,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36199,18 +37578,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36219,7 +37598,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:35 GMT
+ - Wed, 22 Jan 2020 19:35:52 GMT
expires:
- '-1'
pragma:
@@ -36250,26 +37629,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36283,18 +37662,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36303,7 +37682,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:36 GMT
+ - Wed, 22 Jan 2020 19:35:52 GMT
expires:
- '-1'
pragma:
@@ -36334,26 +37713,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36367,18 +37746,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36387,7 +37766,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:36 GMT
+ - Wed, 22 Jan 2020 19:35:53 GMT
expires:
- '-1'
pragma:
@@ -36418,26 +37797,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36451,18 +37830,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36471,7 +37850,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:37 GMT
+ - Wed, 22 Jan 2020 19:35:53 GMT
expires:
- '-1'
pragma:
@@ -36502,26 +37881,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36535,18 +37914,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36555,7 +37934,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:38 GMT
+ - Wed, 22 Jan 2020 19:35:54 GMT
expires:
- '-1'
pragma:
@@ -36586,26 +37965,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36619,18 +37998,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36639,7 +38018,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:39 GMT
+ - Wed, 22 Jan 2020 19:35:55 GMT
expires:
- '-1'
pragma:
@@ -36670,26 +38049,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36703,18 +38082,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36723,7 +38102,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:39 GMT
+ - Wed, 22 Jan 2020 19:35:56 GMT
expires:
- '-1'
pragma:
@@ -36754,26 +38133,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36787,18 +38166,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36807,7 +38186,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:41 GMT
+ - Wed, 22 Jan 2020 19:35:57 GMT
expires:
- '-1'
pragma:
@@ -36838,26 +38217,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36871,18 +38250,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36891,7 +38270,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:41 GMT
+ - Wed, 22 Jan 2020 19:35:58 GMT
expires:
- '-1'
pragma:
@@ -36922,26 +38301,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -36955,18 +38334,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -36975,7 +38354,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:42 GMT
+ - Wed, 22 Jan 2020 19:35:59 GMT
expires:
- '-1'
pragma:
@@ -37006,26 +38385,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37039,18 +38418,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37059,7 +38438,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:42 GMT
+ - Wed, 22 Jan 2020 19:36:00 GMT
expires:
- '-1'
pragma:
@@ -37090,26 +38469,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37123,18 +38502,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37143,7 +38522,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:43 GMT
+ - Wed, 22 Jan 2020 19:36:01 GMT
expires:
- '-1'
pragma:
@@ -37174,26 +38553,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37207,18 +38586,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37227,7 +38606,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:44 GMT
+ - Wed, 22 Jan 2020 19:36:02 GMT
expires:
- '-1'
pragma:
@@ -37258,26 +38637,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37291,18 +38670,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37311,7 +38690,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:45 GMT
+ - Wed, 22 Jan 2020 19:36:02 GMT
expires:
- '-1'
pragma:
@@ -37342,26 +38721,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37375,18 +38754,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37395,7 +38774,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:45 GMT
+ - Wed, 22 Jan 2020 19:36:03 GMT
expires:
- '-1'
pragma:
@@ -37426,26 +38805,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37459,18 +38838,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37479,7 +38858,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:46 GMT
+ - Wed, 22 Jan 2020 19:36:04 GMT
expires:
- '-1'
pragma:
@@ -37510,26 +38889,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37543,18 +38922,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37563,7 +38942,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:47 GMT
+ - Wed, 22 Jan 2020 19:36:04 GMT
expires:
- '-1'
pragma:
@@ -37594,26 +38973,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37627,18 +39006,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37647,7 +39026,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:48 GMT
+ - Wed, 22 Jan 2020 19:36:05 GMT
expires:
- '-1'
pragma:
@@ -37678,26 +39057,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37711,18 +39090,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37731,7 +39110,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:49 GMT
+ - Wed, 22 Jan 2020 19:36:06 GMT
expires:
- '-1'
pragma:
@@ -37762,26 +39141,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37795,18 +39174,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37815,7 +39194,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:50 GMT
+ - Wed, 22 Jan 2020 19:36:07 GMT
expires:
- '-1'
pragma:
@@ -37846,26 +39225,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37879,18 +39258,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37899,7 +39278,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:51 GMT
+ - Wed, 22 Jan 2020 19:36:08 GMT
expires:
- '-1'
pragma:
@@ -37930,26 +39309,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -37963,18 +39342,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -37983,7 +39362,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:51 GMT
+ - Wed, 22 Jan 2020 19:36:08 GMT
expires:
- '-1'
pragma:
@@ -38014,26 +39393,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38047,18 +39426,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38067,7 +39446,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:52 GMT
+ - Wed, 22 Jan 2020 19:36:09 GMT
expires:
- '-1'
pragma:
@@ -38098,26 +39477,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38131,18 +39510,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38151,7 +39530,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:53 GMT
+ - Wed, 22 Jan 2020 19:36:10 GMT
expires:
- '-1'
pragma:
@@ -38182,26 +39561,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38215,18 +39594,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38235,7 +39614,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:54 GMT
+ - Wed, 22 Jan 2020 19:36:10 GMT
expires:
- '-1'
pragma:
@@ -38266,26 +39645,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38299,18 +39678,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38319,7 +39698,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:54 GMT
+ - Wed, 22 Jan 2020 19:36:11 GMT
expires:
- '-1'
pragma:
@@ -38350,26 +39729,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38383,18 +39762,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38403,7 +39782,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:55 GMT
+ - Wed, 22 Jan 2020 19:36:12 GMT
expires:
- '-1'
pragma:
@@ -38434,26 +39813,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38467,18 +39846,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38487,7 +39866,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:56 GMT
+ - Wed, 22 Jan 2020 19:36:12 GMT
expires:
- '-1'
pragma:
@@ -38518,26 +39897,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38551,18 +39930,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38571,7 +39950,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:57 GMT
+ - Wed, 22 Jan 2020 19:36:14 GMT
expires:
- '-1'
pragma:
@@ -38602,26 +39981,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38635,18 +40014,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38655,7 +40034,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:57 GMT
+ - Wed, 22 Jan 2020 19:36:14 GMT
expires:
- '-1'
pragma:
@@ -38686,26 +40065,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38719,18 +40098,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38739,7 +40118,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:01:58 GMT
+ - Wed, 22 Jan 2020 19:36:15 GMT
expires:
- '-1'
pragma:
@@ -38770,26 +40149,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38803,18 +40182,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38823,7 +40202,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:00 GMT
+ - Wed, 22 Jan 2020 19:36:16 GMT
expires:
- '-1'
pragma:
@@ -38854,26 +40233,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38887,18 +40266,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38907,7 +40286,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:00 GMT
+ - Wed, 22 Jan 2020 19:36:16 GMT
expires:
- '-1'
pragma:
@@ -38938,26 +40317,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -38971,18 +40350,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -38991,7 +40370,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:00 GMT
+ - Wed, 22 Jan 2020 19:36:18 GMT
expires:
- '-1'
pragma:
@@ -39022,26 +40401,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39055,18 +40434,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39075,7 +40454,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:02 GMT
+ - Wed, 22 Jan 2020 19:36:18 GMT
expires:
- '-1'
pragma:
@@ -39106,26 +40485,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39139,18 +40518,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39159,7 +40538,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:02 GMT
+ - Wed, 22 Jan 2020 19:36:19 GMT
expires:
- '-1'
pragma:
@@ -39190,26 +40569,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39223,18 +40602,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39243,7 +40622,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:03 GMT
+ - Wed, 22 Jan 2020 19:36:20 GMT
expires:
- '-1'
pragma:
@@ -39274,26 +40653,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39307,18 +40686,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39327,7 +40706,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:04 GMT
+ - Wed, 22 Jan 2020 19:36:21 GMT
expires:
- '-1'
pragma:
@@ -39358,26 +40737,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39391,18 +40770,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39411,7 +40790,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:05 GMT
+ - Wed, 22 Jan 2020 19:36:21 GMT
expires:
- '-1'
pragma:
@@ -39442,26 +40821,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39475,18 +40854,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39495,7 +40874,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:06 GMT
+ - Wed, 22 Jan 2020 19:36:22 GMT
expires:
- '-1'
pragma:
@@ -39526,26 +40905,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39559,18 +40938,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39579,7 +40958,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:06 GMT
+ - Wed, 22 Jan 2020 19:36:22 GMT
expires:
- '-1'
pragma:
@@ -39610,26 +40989,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39643,18 +41022,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39663,7 +41042,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:07 GMT
+ - Wed, 22 Jan 2020 19:36:24 GMT
expires:
- '-1'
pragma:
@@ -39694,26 +41073,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39727,18 +41106,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39747,7 +41126,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:08 GMT
+ - Wed, 22 Jan 2020 19:36:24 GMT
expires:
- '-1'
pragma:
@@ -39778,26 +41157,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39811,18 +41190,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39831,7 +41210,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:09 GMT
+ - Wed, 22 Jan 2020 19:36:25 GMT
expires:
- '-1'
pragma:
@@ -39862,26 +41241,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39895,18 +41274,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39915,7 +41294,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:10 GMT
+ - Wed, 22 Jan 2020 19:36:26 GMT
expires:
- '-1'
pragma:
@@ -39946,26 +41325,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -39979,18 +41358,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -39999,7 +41378,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:11 GMT
+ - Wed, 22 Jan 2020 19:36:26 GMT
expires:
- '-1'
pragma:
@@ -40030,26 +41409,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40063,18 +41442,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40083,7 +41462,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:11 GMT
+ - Wed, 22 Jan 2020 19:36:27 GMT
expires:
- '-1'
pragma:
@@ -40114,26 +41493,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40147,18 +41526,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40167,7 +41546,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:13 GMT
+ - Wed, 22 Jan 2020 19:36:28 GMT
expires:
- '-1'
pragma:
@@ -40198,26 +41577,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40231,18 +41610,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40251,7 +41630,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:13 GMT
+ - Wed, 22 Jan 2020 19:36:28 GMT
expires:
- '-1'
pragma:
@@ -40282,26 +41661,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40315,18 +41694,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40335,7 +41714,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:14 GMT
+ - Wed, 22 Jan 2020 19:36:29 GMT
expires:
- '-1'
pragma:
@@ -40366,26 +41745,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40399,18 +41778,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40419,7 +41798,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:14 GMT
+ - Wed, 22 Jan 2020 19:36:31 GMT
expires:
- '-1'
pragma:
@@ -40450,26 +41829,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40483,18 +41862,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40503,7 +41882,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:15 GMT
+ - Wed, 22 Jan 2020 19:36:31 GMT
expires:
- '-1'
pragma:
@@ -40534,26 +41913,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40567,18 +41946,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40587,7 +41966,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:16 GMT
+ - Wed, 22 Jan 2020 19:36:32 GMT
expires:
- '-1'
pragma:
@@ -40618,26 +41997,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40651,18 +42030,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40671,7 +42050,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:17 GMT
+ - Wed, 22 Jan 2020 19:36:32 GMT
expires:
- '-1'
pragma:
@@ -40702,26 +42081,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40735,18 +42114,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40755,7 +42134,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:18 GMT
+ - Wed, 22 Jan 2020 19:36:33 GMT
expires:
- '-1'
pragma:
@@ -40786,26 +42165,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40819,18 +42198,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40839,7 +42218,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:19 GMT
+ - Wed, 22 Jan 2020 19:36:35 GMT
expires:
- '-1'
pragma:
@@ -40870,26 +42249,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40903,18 +42282,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -40923,7 +42302,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:19 GMT
+ - Wed, 22 Jan 2020 19:36:35 GMT
expires:
- '-1'
pragma:
@@ -40954,26 +42333,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -40987,18 +42366,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41007,7 +42386,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:20 GMT
+ - Wed, 22 Jan 2020 19:36:36 GMT
expires:
- '-1'
pragma:
@@ -41038,26 +42417,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41071,18 +42450,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41091,7 +42470,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:21 GMT
+ - Wed, 22 Jan 2020 19:36:37 GMT
expires:
- '-1'
pragma:
@@ -41122,26 +42501,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41155,18 +42534,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41175,7 +42554,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:21 GMT
+ - Wed, 22 Jan 2020 19:36:37 GMT
expires:
- '-1'
pragma:
@@ -41206,26 +42585,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41239,18 +42618,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41259,7 +42638,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:23 GMT
+ - Wed, 22 Jan 2020 19:36:38 GMT
expires:
- '-1'
pragma:
@@ -41290,26 +42669,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41323,18 +42702,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41343,7 +42722,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:24 GMT
+ - Wed, 22 Jan 2020 19:36:39 GMT
expires:
- '-1'
pragma:
@@ -41374,26 +42753,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41407,18 +42786,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41427,7 +42806,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:24 GMT
+ - Wed, 22 Jan 2020 19:36:40 GMT
expires:
- '-1'
pragma:
@@ -41458,26 +42837,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41491,18 +42870,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41511,7 +42890,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:25 GMT
+ - Wed, 22 Jan 2020 19:36:41 GMT
expires:
- '-1'
pragma:
@@ -41542,26 +42921,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41575,18 +42954,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41595,7 +42974,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:27 GMT
+ - Wed, 22 Jan 2020 19:36:42 GMT
expires:
- '-1'
pragma:
@@ -41626,26 +43005,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41659,18 +43038,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41679,7 +43058,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:27 GMT
+ - Wed, 22 Jan 2020 19:36:42 GMT
expires:
- '-1'
pragma:
@@ -41710,26 +43089,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41743,18 +43122,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41763,7 +43142,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:27 GMT
+ - Wed, 22 Jan 2020 19:36:43 GMT
expires:
- '-1'
pragma:
@@ -41794,26 +43173,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41827,18 +43206,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41847,7 +43226,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:28 GMT
+ - Wed, 22 Jan 2020 19:36:44 GMT
expires:
- '-1'
pragma:
@@ -41878,26 +43257,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41911,18 +43290,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -41931,7 +43310,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:29 GMT
+ - Wed, 22 Jan 2020 19:36:45 GMT
expires:
- '-1'
pragma:
@@ -41962,26 +43341,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -41995,18 +43374,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42015,7 +43394,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:30 GMT
+ - Wed, 22 Jan 2020 19:36:45 GMT
expires:
- '-1'
pragma:
@@ -42046,26 +43425,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42079,18 +43458,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42099,7 +43478,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:32 GMT
+ - Wed, 22 Jan 2020 19:36:47 GMT
expires:
- '-1'
pragma:
@@ -42130,26 +43509,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42163,18 +43542,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42183,7 +43562,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:32 GMT
+ - Wed, 22 Jan 2020 19:36:47 GMT
expires:
- '-1'
pragma:
@@ -42214,26 +43593,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42247,18 +43626,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42267,7 +43646,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:33 GMT
+ - Wed, 22 Jan 2020 19:36:48 GMT
expires:
- '-1'
pragma:
@@ -42298,26 +43677,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42331,18 +43710,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42351,7 +43730,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:34 GMT
+ - Wed, 22 Jan 2020 19:36:48 GMT
expires:
- '-1'
pragma:
@@ -42382,26 +43761,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42415,18 +43794,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42435,7 +43814,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:34 GMT
+ - Wed, 22 Jan 2020 19:36:47 GMT
expires:
- '-1'
pragma:
@@ -42466,26 +43845,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42499,18 +43878,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42519,7 +43898,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:35 GMT
+ - Wed, 22 Jan 2020 19:36:51 GMT
expires:
- '-1'
pragma:
@@ -42550,26 +43929,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42583,18 +43962,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42603,7 +43982,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:36 GMT
+ - Wed, 22 Jan 2020 19:36:52 GMT
expires:
- '-1'
pragma:
@@ -42634,26 +44013,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42667,18 +44046,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42687,7 +44066,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:37 GMT
+ - Wed, 22 Jan 2020 19:36:52 GMT
expires:
- '-1'
pragma:
@@ -42718,26 +44097,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42751,18 +44130,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42771,7 +44150,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:38 GMT
+ - Wed, 22 Jan 2020 19:36:53 GMT
expires:
- '-1'
pragma:
@@ -42802,26 +44181,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42835,18 +44214,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42855,7 +44234,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:38 GMT
+ - Wed, 22 Jan 2020 19:36:54 GMT
expires:
- '-1'
pragma:
@@ -42886,26 +44265,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -42919,18 +44298,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -42939,7 +44318,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:40 GMT
+ - Wed, 22 Jan 2020 19:36:54 GMT
expires:
- '-1'
pragma:
@@ -42970,26 +44349,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43003,18 +44382,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43023,7 +44402,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:40 GMT
+ - Wed, 22 Jan 2020 19:36:55 GMT
expires:
- '-1'
pragma:
@@ -43054,26 +44433,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43087,18 +44466,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43107,7 +44486,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:42 GMT
+ - Wed, 22 Jan 2020 19:36:56 GMT
expires:
- '-1'
pragma:
@@ -43138,26 +44517,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43171,18 +44550,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43191,7 +44570,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:43 GMT
+ - Wed, 22 Jan 2020 19:36:57 GMT
expires:
- '-1'
pragma:
@@ -43222,26 +44601,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43255,18 +44634,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43275,7 +44654,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:43 GMT
+ - Wed, 22 Jan 2020 19:36:58 GMT
expires:
- '-1'
pragma:
@@ -43306,26 +44685,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43339,18 +44718,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43359,7 +44738,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:44 GMT
+ - Wed, 22 Jan 2020 19:36:58 GMT
expires:
- '-1'
pragma:
@@ -43390,26 +44769,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43423,18 +44802,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43443,7 +44822,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:45 GMT
+ - Wed, 22 Jan 2020 19:36:59 GMT
expires:
- '-1'
pragma:
@@ -43474,26 +44853,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43507,18 +44886,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43527,7 +44906,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:46 GMT
+ - Wed, 22 Jan 2020 19:37:01 GMT
expires:
- '-1'
pragma:
@@ -43558,26 +44937,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43591,18 +44970,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43611,7 +44990,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:46 GMT
+ - Wed, 22 Jan 2020 19:37:01 GMT
expires:
- '-1'
pragma:
@@ -43642,26 +45021,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43675,18 +45054,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43695,7 +45074,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:47 GMT
+ - Wed, 22 Jan 2020 19:37:02 GMT
expires:
- '-1'
pragma:
@@ -43726,26 +45105,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43759,18 +45138,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43779,7 +45158,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:48 GMT
+ - Wed, 22 Jan 2020 19:37:03 GMT
expires:
- '-1'
pragma:
@@ -43810,26 +45189,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43843,18 +45222,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43863,7 +45242,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:49 GMT
+ - Wed, 22 Jan 2020 19:37:04 GMT
expires:
- '-1'
pragma:
@@ -43894,26 +45273,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -43927,18 +45306,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -43947,7 +45326,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:50 GMT
+ - Wed, 22 Jan 2020 19:37:05 GMT
expires:
- '-1'
pragma:
@@ -43978,26 +45357,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44011,18 +45390,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -44031,7 +45410,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:51 GMT
+ - Wed, 22 Jan 2020 19:37:05 GMT
expires:
- '-1'
pragma:
@@ -44062,26 +45441,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44095,18 +45474,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -44115,7 +45494,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:52 GMT
+ - Wed, 22 Jan 2020 19:37:06 GMT
expires:
- '-1'
pragma:
@@ -44146,26 +45525,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44179,27 +45558,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:53 GMT
+ - Wed, 22 Jan 2020 19:37:07 GMT
expires:
- '-1'
pragma:
@@ -44230,26 +45609,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44263,27 +45642,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:54 GMT
+ - Wed, 22 Jan 2020 19:37:07 GMT
expires:
- '-1'
pragma:
@@ -44314,26 +45693,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44347,27 +45726,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:55 GMT
+ - Wed, 22 Jan 2020 19:37:08 GMT
expires:
- '-1'
pragma:
@@ -44398,26 +45777,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44431,27 +45810,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:55 GMT
+ - Wed, 22 Jan 2020 19:37:10 GMT
expires:
- '-1'
pragma:
@@ -44482,26 +45861,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44515,27 +45894,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:55 GMT
+ - Wed, 22 Jan 2020 19:37:10 GMT
expires:
- '-1'
pragma:
@@ -44566,26 +45945,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44599,27 +45978,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:56 GMT
+ - Wed, 22 Jan 2020 19:37:11 GMT
expires:
- '-1'
pragma:
@@ -44650,26 +46029,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44683,27 +46062,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:58 GMT
+ - Wed, 22 Jan 2020 19:37:12 GMT
expires:
- '-1'
pragma:
@@ -44734,26 +46113,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44767,27 +46146,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:59 GMT
+ - Wed, 22 Jan 2020 19:37:12 GMT
expires:
- '-1'
pragma:
@@ -44818,26 +46197,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44851,27 +46230,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:02:59 GMT
+ - Wed, 22 Jan 2020 19:37:13 GMT
expires:
- '-1'
pragma:
@@ -44902,26 +46281,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -44935,27 +46314,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:01 GMT
+ - Wed, 22 Jan 2020 19:37:14 GMT
expires:
- '-1'
pragma:
@@ -44986,26 +46365,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45019,27 +46398,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:01 GMT
+ - Wed, 22 Jan 2020 19:37:15 GMT
expires:
- '-1'
pragma:
@@ -45070,26 +46449,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45103,27 +46482,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:02 GMT
+ - Wed, 22 Jan 2020 19:37:16 GMT
expires:
- '-1'
pragma:
@@ -45154,26 +46533,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45187,27 +46566,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:03 GMT
+ - Wed, 22 Jan 2020 19:37:14 GMT
expires:
- '-1'
pragma:
@@ -45238,26 +46617,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45271,27 +46650,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:04 GMT
+ - Wed, 22 Jan 2020 19:37:17 GMT
expires:
- '-1'
pragma:
@@ -45322,26 +46701,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45355,27 +46734,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:05 GMT
+ - Wed, 22 Jan 2020 19:37:19 GMT
expires:
- '-1'
pragma:
@@ -45406,26 +46785,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45439,27 +46818,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:06 GMT
+ - Wed, 22 Jan 2020 19:37:19 GMT
expires:
- '-1'
pragma:
@@ -45490,26 +46869,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45523,27 +46902,27 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '2742'
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:07 GMT
+ - Wed, 22 Jan 2020 19:37:20 GMT
expires:
- '-1'
pragma:
@@ -45574,26 +46953,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45607,27 +46986,111 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2736'
+ - '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:
- - Thu, 12 Dec 2019 01:03:07 GMT
+ - Wed, 22 Jan 2020 19:37:22 GMT
expires:
- '-1'
pragma:
@@ -45658,26 +47121,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45691,18 +47154,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -45711,7 +47174,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:08 GMT
+ - Wed, 22 Jan 2020 19:37:23 GMT
expires:
- '-1'
pragma:
@@ -45742,26 +47205,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45775,18 +47238,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -45795,7 +47258,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:09 GMT
+ - Wed, 22 Jan 2020 19:37:23 GMT
expires:
- '-1'
pragma:
@@ -45826,26 +47289,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45859,18 +47322,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -45879,7 +47342,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:10 GMT
+ - Wed, 22 Jan 2020 19:37:24 GMT
expires:
- '-1'
pragma:
@@ -45910,26 +47373,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -45943,18 +47406,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -45963,7 +47426,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:11 GMT
+ - Wed, 22 Jan 2020 19:37:25 GMT
expires:
- '-1'
pragma:
@@ -45994,26 +47457,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46027,18 +47490,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46047,7 +47510,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:12 GMT
+ - Wed, 22 Jan 2020 19:37:26 GMT
expires:
- '-1'
pragma:
@@ -46078,26 +47541,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46111,18 +47574,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46131,7 +47594,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:14 GMT
+ - Wed, 22 Jan 2020 19:37:27 GMT
expires:
- '-1'
pragma:
@@ -46162,26 +47625,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46195,18 +47658,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46215,7 +47678,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:14 GMT
+ - Wed, 22 Jan 2020 19:37:28 GMT
expires:
- '-1'
pragma:
@@ -46246,26 +47709,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46279,18 +47742,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46299,7 +47762,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:15 GMT
+ - Wed, 22 Jan 2020 19:37:28 GMT
expires:
- '-1'
pragma:
@@ -46330,26 +47793,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46363,18 +47826,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46383,7 +47846,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:15 GMT
+ - Wed, 22 Jan 2020 19:37:29 GMT
expires:
- '-1'
pragma:
@@ -46414,26 +47877,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46447,18 +47910,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46467,7 +47930,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:17 GMT
+ - Wed, 22 Jan 2020 19:37:30 GMT
expires:
- '-1'
pragma:
@@ -46498,26 +47961,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46531,18 +47994,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46551,7 +48014,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:17 GMT
+ - Wed, 22 Jan 2020 19:37:31 GMT
expires:
- '-1'
pragma:
@@ -46582,26 +48045,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46615,18 +48078,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46635,7 +48098,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:18 GMT
+ - Wed, 22 Jan 2020 19:37:31 GMT
expires:
- '-1'
pragma:
@@ -46666,26 +48129,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46699,18 +48162,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46719,7 +48182,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:19 GMT
+ - Wed, 22 Jan 2020 19:37:33 GMT
expires:
- '-1'
pragma:
@@ -46750,26 +48213,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46783,18 +48246,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46803,7 +48266,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:20 GMT
+ - Wed, 22 Jan 2020 19:37:33 GMT
expires:
- '-1'
pragma:
@@ -46834,26 +48297,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46867,18 +48330,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46887,7 +48350,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:21 GMT
+ - Wed, 22 Jan 2020 19:37:35 GMT
expires:
- '-1'
pragma:
@@ -46918,26 +48381,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -46951,18 +48414,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -46971,7 +48434,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:22 GMT
+ - Wed, 22 Jan 2020 19:37:35 GMT
expires:
- '-1'
pragma:
@@ -47002,26 +48465,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47035,18 +48498,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47055,7 +48518,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:22 GMT
+ - Wed, 22 Jan 2020 19:37:36 GMT
expires:
- '-1'
pragma:
@@ -47086,26 +48549,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47119,18 +48582,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47139,7 +48602,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:23 GMT
+ - Wed, 22 Jan 2020 19:37:37 GMT
expires:
- '-1'
pragma:
@@ -47170,26 +48633,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47203,18 +48666,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47223,7 +48686,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:24 GMT
+ - Wed, 22 Jan 2020 19:37:37 GMT
expires:
- '-1'
pragma:
@@ -47254,26 +48717,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47287,18 +48750,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47307,7 +48770,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:25 GMT
+ - Wed, 22 Jan 2020 19:37:38 GMT
expires:
- '-1'
pragma:
@@ -47338,26 +48801,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47371,18 +48834,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47391,7 +48854,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:26 GMT
+ - Wed, 22 Jan 2020 19:37:39 GMT
expires:
- '-1'
pragma:
@@ -47422,26 +48885,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47455,18 +48918,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47475,7 +48938,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:27 GMT
+ - Wed, 22 Jan 2020 19:37:40 GMT
expires:
- '-1'
pragma:
@@ -47506,26 +48969,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47539,18 +49002,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47559,7 +49022,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:28 GMT
+ - Wed, 22 Jan 2020 19:37:41 GMT
expires:
- '-1'
pragma:
@@ -47590,26 +49053,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47623,18 +49086,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47643,7 +49106,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:29 GMT
+ - Wed, 22 Jan 2020 19:37:42 GMT
expires:
- '-1'
pragma:
@@ -47674,26 +49137,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47707,18 +49170,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47727,7 +49190,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:30 GMT
+ - Wed, 22 Jan 2020 19:37:42 GMT
expires:
- '-1'
pragma:
@@ -47758,26 +49221,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47791,18 +49254,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47811,7 +49274,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:30 GMT
+ - Wed, 22 Jan 2020 19:37:43 GMT
expires:
- '-1'
pragma:
@@ -47842,26 +49305,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47875,18 +49338,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47895,7 +49358,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:32 GMT
+ - Wed, 22 Jan 2020 19:37:45 GMT
expires:
- '-1'
pragma:
@@ -47926,26 +49389,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -47959,18 +49422,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -47979,7 +49442,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:32 GMT
+ - Wed, 22 Jan 2020 19:37:46 GMT
expires:
- '-1'
pragma:
@@ -48010,26 +49473,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48043,18 +49506,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48063,7 +49526,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:34 GMT
+ - Wed, 22 Jan 2020 19:37:46 GMT
expires:
- '-1'
pragma:
@@ -48094,26 +49557,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48127,18 +49590,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48147,7 +49610,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:34 GMT
+ - Wed, 22 Jan 2020 19:37:46 GMT
expires:
- '-1'
pragma:
@@ -48178,26 +49641,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48211,18 +49674,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48231,7 +49694,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:35 GMT
+ - Wed, 22 Jan 2020 19:37:48 GMT
expires:
- '-1'
pragma:
@@ -48262,26 +49725,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48295,18 +49758,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48315,7 +49778,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:36 GMT
+ - Wed, 22 Jan 2020 19:37:48 GMT
expires:
- '-1'
pragma:
@@ -48346,26 +49809,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48379,18 +49842,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48399,7 +49862,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:36 GMT
+ - Wed, 22 Jan 2020 19:37:49 GMT
expires:
- '-1'
pragma:
@@ -48430,26 +49893,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48463,18 +49926,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48483,7 +49946,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:37 GMT
+ - Wed, 22 Jan 2020 19:37:51 GMT
expires:
- '-1'
pragma:
@@ -48514,26 +49977,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48547,18 +50010,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48567,7 +50030,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:39 GMT
+ - Wed, 22 Jan 2020 19:37:51 GMT
expires:
- '-1'
pragma:
@@ -48598,26 +50061,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48631,18 +50094,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48651,7 +50114,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:39 GMT
+ - Wed, 22 Jan 2020 19:37:52 GMT
expires:
- '-1'
pragma:
@@ -48682,26 +50145,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48715,18 +50178,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48735,7 +50198,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:40 GMT
+ - Wed, 22 Jan 2020 19:37:53 GMT
expires:
- '-1'
pragma:
@@ -48766,26 +50229,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48799,18 +50262,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48819,7 +50282,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:41 GMT
+ - Wed, 22 Jan 2020 19:37:54 GMT
expires:
- '-1'
pragma:
@@ -48850,26 +50313,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48883,18 +50346,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48903,7 +50366,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:42 GMT
+ - Wed, 22 Jan 2020 19:37:55 GMT
expires:
- '-1'
pragma:
@@ -48934,26 +50397,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -48967,18 +50430,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -48987,7 +50450,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:43 GMT
+ - Wed, 22 Jan 2020 19:37:56 GMT
expires:
- '-1'
pragma:
@@ -49018,26 +50481,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49051,18 +50514,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49071,7 +50534,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:44 GMT
+ - Wed, 22 Jan 2020 19:37:56 GMT
expires:
- '-1'
pragma:
@@ -49102,26 +50565,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49135,18 +50598,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49155,7 +50618,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:45 GMT
+ - Wed, 22 Jan 2020 19:37:57 GMT
expires:
- '-1'
pragma:
@@ -49186,26 +50649,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49219,18 +50682,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49239,7 +50702,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:46 GMT
+ - Wed, 22 Jan 2020 19:37:58 GMT
expires:
- '-1'
pragma:
@@ -49270,26 +50733,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49303,18 +50766,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49323,7 +50786,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:47 GMT
+ - Wed, 22 Jan 2020 19:37:59 GMT
expires:
- '-1'
pragma:
@@ -49354,26 +50817,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49387,18 +50850,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49407,7 +50870,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:47 GMT
+ - Wed, 22 Jan 2020 19:38:00 GMT
expires:
- '-1'
pragma:
@@ -49438,26 +50901,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49471,18 +50934,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49491,7 +50954,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:49 GMT
+ - Wed, 22 Jan 2020 19:38:00 GMT
expires:
- '-1'
pragma:
@@ -49522,26 +50985,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49555,18 +51018,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49575,7 +51038,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:49 GMT
+ - Wed, 22 Jan 2020 19:38:02 GMT
expires:
- '-1'
pragma:
@@ -49606,26 +51069,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49639,18 +51102,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49659,7 +51122,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:50 GMT
+ - Wed, 22 Jan 2020 19:38:02 GMT
expires:
- '-1'
pragma:
@@ -49690,26 +51153,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49723,18 +51186,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49743,7 +51206,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:52 GMT
+ - Wed, 22 Jan 2020 19:38:03 GMT
expires:
- '-1'
pragma:
@@ -49774,26 +51237,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49807,18 +51270,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49827,7 +51290,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:52 GMT
+ - Wed, 22 Jan 2020 19:38:05 GMT
expires:
- '-1'
pragma:
@@ -49858,26 +51321,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49891,18 +51354,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49911,7 +51374,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:53 GMT
+ - Wed, 22 Jan 2020 19:38:05 GMT
expires:
- '-1'
pragma:
@@ -49942,26 +51405,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -49975,18 +51438,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -49995,7 +51458,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:54 GMT
+ - Wed, 22 Jan 2020 19:38:06 GMT
expires:
- '-1'
pragma:
@@ -50026,26 +51489,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50059,18 +51522,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50079,7 +51542,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:55 GMT
+ - Wed, 22 Jan 2020 19:38:07 GMT
expires:
- '-1'
pragma:
@@ -50110,26 +51573,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50143,18 +51606,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50163,7 +51626,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:56 GMT
+ - Wed, 22 Jan 2020 19:38:08 GMT
expires:
- '-1'
pragma:
@@ -50194,26 +51657,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50227,18 +51690,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50247,7 +51710,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:57 GMT
+ - Wed, 22 Jan 2020 19:38:08 GMT
expires:
- '-1'
pragma:
@@ -50278,26 +51741,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50311,18 +51774,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50331,7 +51794,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:58 GMT
+ - Wed, 22 Jan 2020 19:38:10 GMT
expires:
- '-1'
pragma:
@@ -50362,26 +51825,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50395,18 +51858,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50415,7 +51878,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:03:59 GMT
+ - Wed, 22 Jan 2020 19:38:10 GMT
expires:
- '-1'
pragma:
@@ -50446,26 +51909,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50479,18 +51942,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50499,7 +51962,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:00 GMT
+ - Wed, 22 Jan 2020 19:38:11 GMT
expires:
- '-1'
pragma:
@@ -50530,26 +51993,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50563,18 +52026,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50583,7 +52046,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:00 GMT
+ - Wed, 22 Jan 2020 19:38:12 GMT
expires:
- '-1'
pragma:
@@ -50614,26 +52077,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50647,18 +52110,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50667,7 +52130,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:01 GMT
+ - Wed, 22 Jan 2020 19:38:13 GMT
expires:
- '-1'
pragma:
@@ -50698,26 +52161,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50731,18 +52194,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50751,7 +52214,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:03 GMT
+ - Wed, 22 Jan 2020 19:38:14 GMT
expires:
- '-1'
pragma:
@@ -50782,26 +52245,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50815,18 +52278,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50835,7 +52298,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:04 GMT
+ - Wed, 22 Jan 2020 19:38:14 GMT
expires:
- '-1'
pragma:
@@ -50866,26 +52329,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50899,18 +52362,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -50919,7 +52382,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:05 GMT
+ - Wed, 22 Jan 2020 19:38:15 GMT
expires:
- '-1'
pragma:
@@ -50950,26 +52413,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -50983,18 +52446,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51003,7 +52466,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:06 GMT
+ - Wed, 22 Jan 2020 19:38:17 GMT
expires:
- '-1'
pragma:
@@ -51034,26 +52497,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51067,18 +52530,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51087,7 +52550,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:06 GMT
+ - Wed, 22 Jan 2020 19:38:17 GMT
expires:
- '-1'
pragma:
@@ -51118,26 +52581,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51151,18 +52614,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51171,7 +52634,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:07 GMT
+ - Wed, 22 Jan 2020 19:38:18 GMT
expires:
- '-1'
pragma:
@@ -51202,26 +52665,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51235,18 +52698,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51255,7 +52718,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:08 GMT
+ - Wed, 22 Jan 2020 19:38:19 GMT
expires:
- '-1'
pragma:
@@ -51286,26 +52749,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51319,18 +52782,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51339,7 +52802,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:09 GMT
+ - Wed, 22 Jan 2020 19:38:20 GMT
expires:
- '-1'
pragma:
@@ -51370,26 +52833,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51403,18 +52866,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51423,7 +52886,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:10 GMT
+ - Wed, 22 Jan 2020 19:38:20 GMT
expires:
- '-1'
pragma:
@@ -51454,26 +52917,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51487,18 +52950,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51507,7 +52970,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:11 GMT
+ - Wed, 22 Jan 2020 19:38:22 GMT
expires:
- '-1'
pragma:
@@ -51538,26 +53001,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51571,18 +53034,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51591,7 +53054,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:12 GMT
+ - Wed, 22 Jan 2020 19:38:23 GMT
expires:
- '-1'
pragma:
@@ -51622,26 +53085,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51655,18 +53118,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51675,7 +53138,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:13 GMT
+ - Wed, 22 Jan 2020 19:38:24 GMT
expires:
- '-1'
pragma:
@@ -51706,26 +53169,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51739,18 +53202,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51759,7 +53222,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:14 GMT
+ - Wed, 22 Jan 2020 19:38:24 GMT
expires:
- '-1'
pragma:
@@ -51790,26 +53253,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51823,18 +53286,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51843,7 +53306,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:15 GMT
+ - Wed, 22 Jan 2020 19:38:25 GMT
expires:
- '-1'
pragma:
@@ -51874,26 +53337,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51907,18 +53370,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -51927,7 +53390,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:15 GMT
+ - Wed, 22 Jan 2020 19:38:26 GMT
expires:
- '-1'
pragma:
@@ -51958,26 +53421,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -51991,18 +53454,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52011,7 +53474,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:17 GMT
+ - Wed, 22 Jan 2020 19:38:27 GMT
expires:
- '-1'
pragma:
@@ -52042,26 +53505,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52075,18 +53538,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52095,7 +53558,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:17 GMT
+ - Wed, 22 Jan 2020 19:38:28 GMT
expires:
- '-1'
pragma:
@@ -52126,26 +53589,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52159,18 +53622,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52179,7 +53642,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:19 GMT
+ - Wed, 22 Jan 2020 19:38:29 GMT
expires:
- '-1'
pragma:
@@ -52210,26 +53673,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52243,18 +53706,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52263,7 +53726,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:20 GMT
+ - Wed, 22 Jan 2020 19:38:30 GMT
expires:
- '-1'
pragma:
@@ -52294,26 +53757,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52327,18 +53790,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52347,7 +53810,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:21 GMT
+ - Wed, 22 Jan 2020 19:38:30 GMT
expires:
- '-1'
pragma:
@@ -52378,26 +53841,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52411,18 +53874,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52431,7 +53894,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:22 GMT
+ - Wed, 22 Jan 2020 19:38:31 GMT
expires:
- '-1'
pragma:
@@ -52462,26 +53925,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52495,18 +53958,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52515,7 +53978,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:23 GMT
+ - Wed, 22 Jan 2020 19:38:32 GMT
expires:
- '-1'
pragma:
@@ -52546,26 +54009,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52579,18 +54042,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52599,7 +54062,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:23 GMT
+ - Wed, 22 Jan 2020 19:38:33 GMT
expires:
- '-1'
pragma:
@@ -52630,26 +54093,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52663,18 +54126,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52683,7 +54146,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:24 GMT
+ - Wed, 22 Jan 2020 19:38:34 GMT
expires:
- '-1'
pragma:
@@ -52714,26 +54177,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52747,18 +54210,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52767,7 +54230,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:26 GMT
+ - Wed, 22 Jan 2020 19:38:35 GMT
expires:
- '-1'
pragma:
@@ -52798,26 +54261,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52831,18 +54294,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52851,7 +54314,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:26 GMT
+ - Wed, 22 Jan 2020 19:38:36 GMT
expires:
- '-1'
pragma:
@@ -52882,26 +54345,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52915,18 +54378,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -52935,7 +54398,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:27 GMT
+ - Wed, 22 Jan 2020 19:38:37 GMT
expires:
- '-1'
pragma:
@@ -52966,26 +54429,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -52999,18 +54462,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53019,7 +54482,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:29 GMT
+ - Wed, 22 Jan 2020 19:38:38 GMT
expires:
- '-1'
pragma:
@@ -53050,26 +54513,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53083,18 +54546,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53103,7 +54566,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:29 GMT
+ - Wed, 22 Jan 2020 19:38:39 GMT
expires:
- '-1'
pragma:
@@ -53134,26 +54597,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53167,18 +54630,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53187,7 +54650,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:31 GMT
+ - Wed, 22 Jan 2020 19:38:39 GMT
expires:
- '-1'
pragma:
@@ -53218,26 +54681,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53251,18 +54714,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53271,7 +54734,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:31 GMT
+ - Wed, 22 Jan 2020 19:38:41 GMT
expires:
- '-1'
pragma:
@@ -53302,26 +54765,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53335,18 +54798,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53355,7 +54818,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:32 GMT
+ - Wed, 22 Jan 2020 19:38:41 GMT
expires:
- '-1'
pragma:
@@ -53386,26 +54849,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53419,18 +54882,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53439,7 +54902,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:33 GMT
+ - Wed, 22 Jan 2020 19:38:42 GMT
expires:
- '-1'
pragma:
@@ -53470,26 +54933,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53503,18 +54966,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53523,7 +54986,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:34 GMT
+ - Wed, 22 Jan 2020 19:38:43 GMT
expires:
- '-1'
pragma:
@@ -53554,26 +55017,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53587,18 +55050,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53607,7 +55070,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:35 GMT
+ - Wed, 22 Jan 2020 19:38:43 GMT
expires:
- '-1'
pragma:
@@ -53638,26 +55101,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53671,18 +55134,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53691,7 +55154,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:36 GMT
+ - Wed, 22 Jan 2020 19:38:45 GMT
expires:
- '-1'
pragma:
@@ -53722,26 +55185,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53755,18 +55218,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53775,7 +55238,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:37 GMT
+ - Wed, 22 Jan 2020 19:38:46 GMT
expires:
- '-1'
pragma:
@@ -53806,26 +55269,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53839,18 +55302,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53859,7 +55322,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:38 GMT
+ - Wed, 22 Jan 2020 19:38:46 GMT
expires:
- '-1'
pragma:
@@ -53890,26 +55353,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -53923,18 +55386,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -53943,7 +55406,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:38 GMT
+ - Wed, 22 Jan 2020 19:38:47 GMT
expires:
- '-1'
pragma:
@@ -53974,26 +55437,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54007,18 +55470,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54027,7 +55490,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:40 GMT
+ - Wed, 22 Jan 2020 19:38:48 GMT
expires:
- '-1'
pragma:
@@ -54058,26 +55521,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54091,18 +55554,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54111,7 +55574,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:41 GMT
+ - Wed, 22 Jan 2020 19:38:50 GMT
expires:
- '-1'
pragma:
@@ -54142,26 +55605,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54175,18 +55638,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54195,7 +55658,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:41 GMT
+ - Wed, 22 Jan 2020 19:38:51 GMT
expires:
- '-1'
pragma:
@@ -54226,26 +55689,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54259,18 +55722,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54279,7 +55742,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:42 GMT
+ - Wed, 22 Jan 2020 19:38:51 GMT
expires:
- '-1'
pragma:
@@ -54310,26 +55773,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54343,18 +55806,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54363,7 +55826,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:43 GMT
+ - Wed, 22 Jan 2020 19:38:52 GMT
expires:
- '-1'
pragma:
@@ -54394,26 +55857,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54427,18 +55890,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54447,7 +55910,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:44 GMT
+ - Wed, 22 Jan 2020 19:38:53 GMT
expires:
- '-1'
pragma:
@@ -54478,26 +55941,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54511,18 +55974,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54531,7 +55994,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:45 GMT
+ - Wed, 22 Jan 2020 19:38:54 GMT
expires:
- '-1'
pragma:
@@ -54562,26 +56025,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54595,18 +56058,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54615,7 +56078,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:46 GMT
+ - Wed, 22 Jan 2020 19:38:55 GMT
expires:
- '-1'
pragma:
@@ -54646,26 +56109,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54679,18 +56142,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54699,7 +56162,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:48 GMT
+ - Wed, 22 Jan 2020 19:38:56 GMT
expires:
- '-1'
pragma:
@@ -54730,26 +56193,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54763,18 +56226,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54783,7 +56246,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:48 GMT
+ - Wed, 22 Jan 2020 19:38:57 GMT
expires:
- '-1'
pragma:
@@ -54814,26 +56277,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54847,18 +56310,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54867,7 +56330,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:49 GMT
+ - Wed, 22 Jan 2020 19:38:57 GMT
expires:
- '-1'
pragma:
@@ -54898,26 +56361,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -54931,18 +56394,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -54951,7 +56414,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:50 GMT
+ - Wed, 22 Jan 2020 19:38:59 GMT
expires:
- '-1'
pragma:
@@ -54982,26 +56445,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55015,18 +56478,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55035,7 +56498,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:51 GMT
+ - Wed, 22 Jan 2020 19:39:00 GMT
expires:
- '-1'
pragma:
@@ -55066,26 +56529,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55099,18 +56562,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55119,7 +56582,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:52 GMT
+ - Wed, 22 Jan 2020 19:39:00 GMT
expires:
- '-1'
pragma:
@@ -55150,26 +56613,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55183,18 +56646,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55203,7 +56666,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:53 GMT
+ - Wed, 22 Jan 2020 19:39:01 GMT
expires:
- '-1'
pragma:
@@ -55234,26 +56697,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55267,18 +56730,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55287,7 +56750,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:54 GMT
+ - Wed, 22 Jan 2020 19:39:03 GMT
expires:
- '-1'
pragma:
@@ -55318,26 +56781,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55351,18 +56814,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55371,7 +56834,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:55 GMT
+ - Wed, 22 Jan 2020 19:39:04 GMT
expires:
- '-1'
pragma:
@@ -55402,26 +56865,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55435,18 +56898,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55455,7 +56918,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:56 GMT
+ - Wed, 22 Jan 2020 19:39:05 GMT
expires:
- '-1'
pragma:
@@ -55486,26 +56949,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55519,18 +56982,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55539,7 +57002,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:57 GMT
+ - Wed, 22 Jan 2020 19:39:05 GMT
expires:
- '-1'
pragma:
@@ -55570,26 +57033,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55603,18 +57066,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55623,7 +57086,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:58 GMT
+ - Wed, 22 Jan 2020 19:39:06 GMT
expires:
- '-1'
pragma:
@@ -55654,26 +57117,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55687,18 +57150,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55707,7 +57170,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:04:59 GMT
+ - Wed, 22 Jan 2020 19:39:07 GMT
expires:
- '-1'
pragma:
@@ -55738,26 +57201,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55771,18 +57234,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55791,7 +57254,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:00 GMT
+ - Wed, 22 Jan 2020 19:39:08 GMT
expires:
- '-1'
pragma:
@@ -55822,26 +57285,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55855,18 +57318,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55875,7 +57338,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:01 GMT
+ - Wed, 22 Jan 2020 19:39:07 GMT
expires:
- '-1'
pragma:
@@ -55906,26 +57369,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -55939,18 +57402,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -55959,7 +57422,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:02 GMT
+ - Wed, 22 Jan 2020 19:39:10 GMT
expires:
- '-1'
pragma:
@@ -55990,26 +57453,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56023,18 +57486,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56043,7 +57506,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:03 GMT
+ - Wed, 22 Jan 2020 19:39:11 GMT
expires:
- '-1'
pragma:
@@ -56074,26 +57537,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56107,18 +57570,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56127,7 +57590,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:04 GMT
+ - Wed, 22 Jan 2020 19:39:12 GMT
expires:
- '-1'
pragma:
@@ -56158,26 +57621,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56191,18 +57654,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56211,7 +57674,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:05 GMT
+ - Wed, 22 Jan 2020 19:39:13 GMT
expires:
- '-1'
pragma:
@@ -56242,26 +57705,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56275,18 +57738,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56295,7 +57758,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:06 GMT
+ - Wed, 22 Jan 2020 19:39:14 GMT
expires:
- '-1'
pragma:
@@ -56326,26 +57789,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56359,18 +57822,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56379,7 +57842,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:07 GMT
+ - Wed, 22 Jan 2020 19:39:15 GMT
expires:
- '-1'
pragma:
@@ -56410,26 +57873,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56443,18 +57906,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56463,7 +57926,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:08 GMT
+ - Wed, 22 Jan 2020 19:39:16 GMT
expires:
- '-1'
pragma:
@@ -56494,26 +57957,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56527,18 +57990,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56547,7 +58010,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:09 GMT
+ - Wed, 22 Jan 2020 19:39:16 GMT
expires:
- '-1'
pragma:
@@ -56578,26 +58041,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56611,18 +58074,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56631,7 +58094,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:10 GMT
+ - Wed, 22 Jan 2020 19:39:17 GMT
expires:
- '-1'
pragma:
@@ -56662,26 +58125,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56695,18 +58158,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56715,7 +58178,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:11 GMT
+ - Wed, 22 Jan 2020 19:39:18 GMT
expires:
- '-1'
pragma:
@@ -56746,26 +58209,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56779,18 +58242,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56799,7 +58262,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:12 GMT
+ - Wed, 22 Jan 2020 19:39:19 GMT
expires:
- '-1'
pragma:
@@ -56830,26 +58293,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56863,18 +58326,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56883,7 +58346,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:13 GMT
+ - Wed, 22 Jan 2020 19:39:21 GMT
expires:
- '-1'
pragma:
@@ -56914,26 +58377,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -56947,18 +58410,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -56967,7 +58430,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:14 GMT
+ - Wed, 22 Jan 2020 19:39:21 GMT
expires:
- '-1'
pragma:
@@ -56998,26 +58461,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57031,18 +58494,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57051,7 +58514,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:15 GMT
+ - Wed, 22 Jan 2020 19:39:23 GMT
expires:
- '-1'
pragma:
@@ -57082,26 +58545,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57115,18 +58578,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57135,7 +58598,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:16 GMT
+ - Wed, 22 Jan 2020 19:39:23 GMT
expires:
- '-1'
pragma:
@@ -57166,26 +58629,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57199,18 +58662,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57219,7 +58682,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:17 GMT
+ - Wed, 22 Jan 2020 19:39:24 GMT
expires:
- '-1'
pragma:
@@ -57250,26 +58713,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57283,18 +58746,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57303,7 +58766,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:19 GMT
+ - Wed, 22 Jan 2020 19:39:25 GMT
expires:
- '-1'
pragma:
@@ -57334,26 +58797,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57367,18 +58830,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57387,7 +58850,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:20 GMT
+ - Wed, 22 Jan 2020 19:39:26 GMT
expires:
- '-1'
pragma:
@@ -57418,26 +58881,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57451,18 +58914,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57471,7 +58934,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:21 GMT
+ - Wed, 22 Jan 2020 19:39:28 GMT
expires:
- '-1'
pragma:
@@ -57502,26 +58965,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57535,18 +58998,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57555,7 +59018,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:21 GMT
+ - Wed, 22 Jan 2020 19:39:28 GMT
expires:
- '-1'
pragma:
@@ -57586,26 +59049,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57619,18 +59082,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57639,7 +59102,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:23 GMT
+ - Wed, 22 Jan 2020 19:39:29 GMT
expires:
- '-1'
pragma:
@@ -57670,26 +59133,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57703,18 +59166,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57723,7 +59186,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:23 GMT
+ - Wed, 22 Jan 2020 19:39:30 GMT
expires:
- '-1'
pragma:
@@ -57754,26 +59217,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57787,18 +59250,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57807,7 +59270,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:24 GMT
+ - Wed, 22 Jan 2020 19:39:31 GMT
expires:
- '-1'
pragma:
@@ -57838,26 +59301,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57871,18 +59334,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57891,7 +59354,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:25 GMT
+ - Wed, 22 Jan 2020 19:39:31 GMT
expires:
- '-1'
pragma:
@@ -57922,26 +59385,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -57955,18 +59418,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -57975,7 +59438,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:27 GMT
+ - Wed, 22 Jan 2020 19:39:33 GMT
expires:
- '-1'
pragma:
@@ -58006,26 +59469,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58039,18 +59502,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58059,7 +59522,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:27 GMT
+ - Wed, 22 Jan 2020 19:39:34 GMT
expires:
- '-1'
pragma:
@@ -58090,26 +59553,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58123,18 +59586,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58143,7 +59606,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:29 GMT
+ - Wed, 22 Jan 2020 19:39:35 GMT
expires:
- '-1'
pragma:
@@ -58174,26 +59637,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58207,18 +59670,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58227,7 +59690,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:29 GMT
+ - Wed, 22 Jan 2020 19:39:35 GMT
expires:
- '-1'
pragma:
@@ -58258,26 +59721,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58291,18 +59754,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58311,7 +59774,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:30 GMT
+ - Wed, 22 Jan 2020 19:39:37 GMT
expires:
- '-1'
pragma:
@@ -58342,26 +59805,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58375,18 +59838,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58395,7 +59858,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:32 GMT
+ - Wed, 22 Jan 2020 19:39:38 GMT
expires:
- '-1'
pragma:
@@ -58426,26 +59889,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58459,18 +59922,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58479,7 +59942,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:33 GMT
+ - Wed, 22 Jan 2020 19:39:38 GMT
expires:
- '-1'
pragma:
@@ -58510,26 +59973,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58543,18 +60006,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58563,7 +60026,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:34 GMT
+ - Wed, 22 Jan 2020 19:39:40 GMT
expires:
- '-1'
pragma:
@@ -58594,26 +60057,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58627,18 +60090,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58647,7 +60110,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:34 GMT
+ - Wed, 22 Jan 2020 19:39:40 GMT
expires:
- '-1'
pragma:
@@ -58678,26 +60141,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58711,18 +60174,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58731,7 +60194,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:35 GMT
+ - Wed, 22 Jan 2020 19:39:41 GMT
expires:
- '-1'
pragma:
@@ -58762,26 +60225,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58795,18 +60258,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58815,7 +60278,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:36 GMT
+ - Wed, 22 Jan 2020 19:39:42 GMT
expires:
- '-1'
pragma:
@@ -58846,26 +60309,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58879,18 +60342,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58899,7 +60362,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:38 GMT
+ - Wed, 22 Jan 2020 19:39:44 GMT
expires:
- '-1'
pragma:
@@ -58930,26 +60393,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -58963,18 +60426,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -58983,7 +60446,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:39 GMT
+ - Wed, 22 Jan 2020 19:39:45 GMT
expires:
- '-1'
pragma:
@@ -59014,26 +60477,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59047,18 +60510,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59067,7 +60530,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:40 GMT
+ - Wed, 22 Jan 2020 19:39:45 GMT
expires:
- '-1'
pragma:
@@ -59098,26 +60561,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59131,18 +60594,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59151,7 +60614,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:41 GMT
+ - Wed, 22 Jan 2020 19:39:47 GMT
expires:
- '-1'
pragma:
@@ -59182,26 +60645,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59215,18 +60678,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59235,7 +60698,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:42 GMT
+ - Wed, 22 Jan 2020 19:39:46 GMT
expires:
- '-1'
pragma:
@@ -59266,26 +60729,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59299,18 +60762,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59319,7 +60782,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:43 GMT
+ - Wed, 22 Jan 2020 19:39:49 GMT
expires:
- '-1'
pragma:
@@ -59350,26 +60813,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59383,18 +60846,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59403,7 +60866,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:44 GMT
+ - Wed, 22 Jan 2020 19:39:49 GMT
expires:
- '-1'
pragma:
@@ -59434,26 +60897,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59467,18 +60930,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59487,7 +60950,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:45 GMT
+ - Wed, 22 Jan 2020 19:39:51 GMT
expires:
- '-1'
pragma:
@@ -59518,26 +60981,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59551,18 +61014,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59571,7 +61034,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:46 GMT
+ - Wed, 22 Jan 2020 19:39:52 GMT
expires:
- '-1'
pragma:
@@ -59602,26 +61065,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59635,18 +61098,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59655,7 +61118,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:47 GMT
+ - Wed, 22 Jan 2020 19:39:53 GMT
expires:
- '-1'
pragma:
@@ -59686,26 +61149,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59719,18 +61182,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59739,7 +61202,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:48 GMT
+ - Wed, 22 Jan 2020 19:39:53 GMT
expires:
- '-1'
pragma:
@@ -59770,26 +61233,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59803,18 +61266,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59823,7 +61286,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:49 GMT
+ - Wed, 22 Jan 2020 19:39:55 GMT
expires:
- '-1'
pragma:
@@ -59854,26 +61317,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59887,18 +61350,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59907,7 +61370,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:50 GMT
+ - Wed, 22 Jan 2020 19:39:55 GMT
expires:
- '-1'
pragma:
@@ -59938,26 +61401,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -59971,18 +61434,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -59991,7 +61454,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:51 GMT
+ - Wed, 22 Jan 2020 19:39:56 GMT
expires:
- '-1'
pragma:
@@ -60022,26 +61485,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60055,18 +61518,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60075,7 +61538,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:52 GMT
+ - Wed, 22 Jan 2020 19:39:57 GMT
expires:
- '-1'
pragma:
@@ -60106,26 +61569,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60139,18 +61602,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60159,7 +61622,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:53 GMT
+ - Wed, 22 Jan 2020 19:39:59 GMT
expires:
- '-1'
pragma:
@@ -60190,26 +61653,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60223,18 +61686,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60243,7 +61706,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:54 GMT
+ - Wed, 22 Jan 2020 19:40:00 GMT
expires:
- '-1'
pragma:
@@ -60274,26 +61737,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60307,18 +61770,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60327,7 +61790,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:55 GMT
+ - Wed, 22 Jan 2020 19:40:01 GMT
expires:
- '-1'
pragma:
@@ -60358,26 +61821,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60391,18 +61854,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60411,7 +61874,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:57 GMT
+ - Wed, 22 Jan 2020 19:40:02 GMT
expires:
- '-1'
pragma:
@@ -60442,26 +61905,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60475,18 +61938,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60495,7 +61958,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:58 GMT
+ - Wed, 22 Jan 2020 19:40:02 GMT
expires:
- '-1'
pragma:
@@ -60526,26 +61989,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60559,18 +62022,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60579,7 +62042,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:05:59 GMT
+ - Wed, 22 Jan 2020 19:40:04 GMT
expires:
- '-1'
pragma:
@@ -60610,26 +62073,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60643,18 +62106,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60663,7 +62126,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:00 GMT
+ - Wed, 22 Jan 2020 19:40:05 GMT
expires:
- '-1'
pragma:
@@ -60694,26 +62157,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60727,18 +62190,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60747,7 +62210,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:01 GMT
+ - Wed, 22 Jan 2020 19:40:06 GMT
expires:
- '-1'
pragma:
@@ -60778,26 +62241,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60811,18 +62274,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60831,7 +62294,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:02 GMT
+ - Wed, 22 Jan 2020 19:40:07 GMT
expires:
- '-1'
pragma:
@@ -60862,26 +62325,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60895,18 +62358,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60915,7 +62378,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:03 GMT
+ - Wed, 22 Jan 2020 19:40:08 GMT
expires:
- '-1'
pragma:
@@ -60946,26 +62409,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -60979,18 +62442,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -60999,7 +62462,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:04 GMT
+ - Wed, 22 Jan 2020 19:40:08 GMT
expires:
- '-1'
pragma:
@@ -61030,26 +62493,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61063,18 +62526,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61083,7 +62546,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:05 GMT
+ - Wed, 22 Jan 2020 19:40:10 GMT
expires:
- '-1'
pragma:
@@ -61114,26 +62577,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61147,18 +62610,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61167,7 +62630,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:06 GMT
+ - Wed, 22 Jan 2020 19:40:11 GMT
expires:
- '-1'
pragma:
@@ -61198,26 +62661,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61231,18 +62694,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61251,7 +62714,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:07 GMT
+ - Wed, 22 Jan 2020 19:40:11 GMT
expires:
- '-1'
pragma:
@@ -61282,26 +62745,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61315,18 +62778,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61335,7 +62798,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:08 GMT
+ - Wed, 22 Jan 2020 19:40:13 GMT
expires:
- '-1'
pragma:
@@ -61366,26 +62829,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61399,18 +62862,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61419,7 +62882,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:09 GMT
+ - Wed, 22 Jan 2020 19:40:14 GMT
expires:
- '-1'
pragma:
@@ -61450,26 +62913,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61483,18 +62946,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61503,7 +62966,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:10 GMT
+ - Wed, 22 Jan 2020 19:40:14 GMT
expires:
- '-1'
pragma:
@@ -61534,26 +62997,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61567,18 +63030,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61587,7 +63050,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:11 GMT
+ - Wed, 22 Jan 2020 19:40:15 GMT
expires:
- '-1'
pragma:
@@ -61618,26 +63081,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61651,18 +63114,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61671,7 +63134,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:12 GMT
+ - Wed, 22 Jan 2020 19:40:17 GMT
expires:
- '-1'
pragma:
@@ -61702,26 +63165,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61735,18 +63198,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61755,7 +63218,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:14 GMT
+ - Wed, 22 Jan 2020 19:40:18 GMT
expires:
- '-1'
pragma:
@@ -61786,26 +63249,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61819,18 +63282,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61839,7 +63302,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:15 GMT
+ - Wed, 22 Jan 2020 19:40:19 GMT
expires:
- '-1'
pragma:
@@ -61870,26 +63333,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61903,18 +63366,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -61923,7 +63386,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:16 GMT
+ - Wed, 22 Jan 2020 19:40:20 GMT
expires:
- '-1'
pragma:
@@ -61954,26 +63417,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -61987,18 +63450,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62007,7 +63470,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:17 GMT
+ - Wed, 22 Jan 2020 19:40:21 GMT
expires:
- '-1'
pragma:
@@ -62038,26 +63501,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62071,18 +63534,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62091,7 +63554,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:18 GMT
+ - Wed, 22 Jan 2020 19:40:22 GMT
expires:
- '-1'
pragma:
@@ -62122,26 +63585,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62155,18 +63618,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62175,7 +63638,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:18 GMT
+ - Wed, 22 Jan 2020 19:40:23 GMT
expires:
- '-1'
pragma:
@@ -62206,26 +63669,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62239,18 +63702,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62259,7 +63722,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:19 GMT
+ - Wed, 22 Jan 2020 19:40:24 GMT
expires:
- '-1'
pragma:
@@ -62290,26 +63753,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62323,18 +63786,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62343,7 +63806,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:20 GMT
+ - Wed, 22 Jan 2020 19:40:25 GMT
expires:
- '-1'
pragma:
@@ -62374,26 +63837,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62407,18 +63870,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62427,7 +63890,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:22 GMT
+ - Wed, 22 Jan 2020 19:40:26 GMT
expires:
- '-1'
pragma:
@@ -62458,26 +63921,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62491,18 +63954,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62511,7 +63974,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:23 GMT
+ - Wed, 22 Jan 2020 19:40:27 GMT
expires:
- '-1'
pragma:
@@ -62542,26 +64005,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62575,18 +64038,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62595,7 +64058,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:24 GMT
+ - Wed, 22 Jan 2020 19:40:27 GMT
expires:
- '-1'
pragma:
@@ -62626,26 +64089,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62659,18 +64122,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62679,7 +64142,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:25 GMT
+ - Wed, 22 Jan 2020 19:40:28 GMT
expires:
- '-1'
pragma:
@@ -62710,26 +64173,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62743,18 +64206,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62763,7 +64226,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:26 GMT
+ - Wed, 22 Jan 2020 19:40:29 GMT
expires:
- '-1'
pragma:
@@ -62794,26 +64257,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62827,18 +64290,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62847,7 +64310,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:27 GMT
+ - Wed, 22 Jan 2020 19:40:30 GMT
expires:
- '-1'
pragma:
@@ -62878,26 +64341,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62911,18 +64374,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -62931,7 +64394,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:28 GMT
+ - Wed, 22 Jan 2020 19:40:31 GMT
expires:
- '-1'
pragma:
@@ -62962,26 +64425,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -62995,18 +64458,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63015,7 +64478,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:30 GMT
+ - Wed, 22 Jan 2020 19:40:32 GMT
expires:
- '-1'
pragma:
@@ -63046,26 +64509,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63079,18 +64542,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63099,7 +64562,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:31 GMT
+ - Wed, 22 Jan 2020 19:40:34 GMT
expires:
- '-1'
pragma:
@@ -63130,26 +64593,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63163,18 +64626,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63183,7 +64646,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:32 GMT
+ - Wed, 22 Jan 2020 19:40:35 GMT
expires:
- '-1'
pragma:
@@ -63214,26 +64677,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63247,18 +64710,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63267,7 +64730,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:33 GMT
+ - Wed, 22 Jan 2020 19:40:36 GMT
expires:
- '-1'
pragma:
@@ -63298,26 +64761,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63331,18 +64794,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63351,7 +64814,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:34 GMT
+ - Wed, 22 Jan 2020 19:40:37 GMT
expires:
- '-1'
pragma:
@@ -63382,26 +64845,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63415,18 +64878,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63435,7 +64898,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:35 GMT
+ - Wed, 22 Jan 2020 19:40:38 GMT
expires:
- '-1'
pragma:
@@ -63466,26 +64929,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63499,18 +64962,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63519,7 +64982,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:36 GMT
+ - Wed, 22 Jan 2020 19:40:39 GMT
expires:
- '-1'
pragma:
@@ -63550,26 +65013,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63583,18 +65046,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63603,7 +65066,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:37 GMT
+ - Wed, 22 Jan 2020 19:40:40 GMT
expires:
- '-1'
pragma:
@@ -63634,26 +65097,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63667,18 +65130,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63687,7 +65150,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:39 GMT
+ - Wed, 22 Jan 2020 19:40:41 GMT
expires:
- '-1'
pragma:
@@ -63718,26 +65181,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63751,18 +65214,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63771,7 +65234,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:39 GMT
+ - Wed, 22 Jan 2020 19:40:42 GMT
expires:
- '-1'
pragma:
@@ -63802,26 +65265,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63835,18 +65298,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63855,7 +65318,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:40 GMT
+ - Wed, 22 Jan 2020 19:40:43 GMT
expires:
- '-1'
pragma:
@@ -63886,26 +65349,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -63919,18 +65382,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -63939,7 +65402,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:41 GMT
+ - Wed, 22 Jan 2020 19:40:44 GMT
expires:
- '-1'
pragma:
@@ -63970,26 +65433,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64003,18 +65466,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64023,7 +65486,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:43 GMT
+ - Wed, 22 Jan 2020 19:40:45 GMT
expires:
- '-1'
pragma:
@@ -64054,26 +65517,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64087,18 +65550,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64107,7 +65570,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:44 GMT
+ - Wed, 22 Jan 2020 19:40:46 GMT
expires:
- '-1'
pragma:
@@ -64138,26 +65601,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64171,18 +65634,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64191,7 +65654,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:45 GMT
+ - Wed, 22 Jan 2020 19:40:47 GMT
expires:
- '-1'
pragma:
@@ -64222,26 +65685,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64255,18 +65718,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64275,7 +65738,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:46 GMT
+ - Wed, 22 Jan 2020 19:40:48 GMT
expires:
- '-1'
pragma:
@@ -64306,26 +65769,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64339,18 +65802,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64359,7 +65822,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:47 GMT
+ - Wed, 22 Jan 2020 19:40:49 GMT
expires:
- '-1'
pragma:
@@ -64390,26 +65853,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64423,18 +65886,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64443,7 +65906,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:48 GMT
+ - Wed, 22 Jan 2020 19:40:51 GMT
expires:
- '-1'
pragma:
@@ -64474,26 +65937,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64507,18 +65970,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64527,7 +65990,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:49 GMT
+ - Wed, 22 Jan 2020 19:40:51 GMT
expires:
- '-1'
pragma:
@@ -64558,26 +66021,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64591,18 +66054,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64611,7 +66074,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:51 GMT
+ - Wed, 22 Jan 2020 19:40:52 GMT
expires:
- '-1'
pragma:
@@ -64642,26 +66105,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64675,18 +66138,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64695,7 +66158,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:51 GMT
+ - Wed, 22 Jan 2020 19:40:53 GMT
expires:
- '-1'
pragma:
@@ -64726,26 +66189,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64759,18 +66222,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64779,7 +66242,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:52 GMT
+ - Wed, 22 Jan 2020 19:40:55 GMT
expires:
- '-1'
pragma:
@@ -64810,26 +66273,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64843,18 +66306,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64863,7 +66326,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:53 GMT
+ - Wed, 22 Jan 2020 19:40:55 GMT
expires:
- '-1'
pragma:
@@ -64894,26 +66357,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -64927,18 +66390,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -64947,7 +66410,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:54 GMT
+ - Wed, 22 Jan 2020 19:40:56 GMT
expires:
- '-1'
pragma:
@@ -64978,26 +66441,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65011,18 +66474,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65031,7 +66494,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:56 GMT
+ - Wed, 22 Jan 2020 19:40:57 GMT
expires:
- '-1'
pragma:
@@ -65062,26 +66525,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65095,18 +66558,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65115,7 +66578,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:57 GMT
+ - Wed, 22 Jan 2020 19:40:59 GMT
expires:
- '-1'
pragma:
@@ -65146,26 +66609,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65179,18 +66642,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65199,7 +66662,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:58 GMT
+ - Wed, 22 Jan 2020 19:41:00 GMT
expires:
- '-1'
pragma:
@@ -65230,26 +66693,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65263,18 +66726,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65283,7 +66746,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:06:59 GMT
+ - Wed, 22 Jan 2020 19:41:00 GMT
expires:
- '-1'
pragma:
@@ -65314,26 +66777,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65347,18 +66810,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65367,7 +66830,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:00 GMT
+ - Wed, 22 Jan 2020 19:41:01 GMT
expires:
- '-1'
pragma:
@@ -65398,26 +66861,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65431,18 +66894,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65451,7 +66914,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:01 GMT
+ - Wed, 22 Jan 2020 19:41:03 GMT
expires:
- '-1'
pragma:
@@ -65482,26 +66945,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65515,18 +66978,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65535,7 +66998,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:02 GMT
+ - Wed, 22 Jan 2020 19:41:04 GMT
expires:
- '-1'
pragma:
@@ -65566,26 +67029,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65599,18 +67062,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65619,7 +67082,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:03 GMT
+ - Wed, 22 Jan 2020 19:41:04 GMT
expires:
- '-1'
pragma:
@@ -65650,26 +67113,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65683,18 +67146,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65703,7 +67166,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:05 GMT
+ - Wed, 22 Jan 2020 19:41:06 GMT
expires:
- '-1'
pragma:
@@ -65734,26 +67197,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65767,18 +67230,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65787,7 +67250,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:05 GMT
+ - Wed, 22 Jan 2020 19:41:07 GMT
expires:
- '-1'
pragma:
@@ -65818,26 +67281,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65851,18 +67314,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65871,7 +67334,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:06 GMT
+ - Wed, 22 Jan 2020 19:41:08 GMT
expires:
- '-1'
pragma:
@@ -65902,26 +67365,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -65935,18 +67398,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -65955,7 +67418,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:07 GMT
+ - Wed, 22 Jan 2020 19:41:09 GMT
expires:
- '-1'
pragma:
@@ -65986,26 +67449,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66019,18 +67482,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66039,7 +67502,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:09 GMT
+ - Wed, 22 Jan 2020 19:41:11 GMT
expires:
- '-1'
pragma:
@@ -66070,26 +67533,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66103,18 +67566,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66123,7 +67586,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:10 GMT
+ - Wed, 22 Jan 2020 19:41:11 GMT
expires:
- '-1'
pragma:
@@ -66154,26 +67617,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66187,18 +67650,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66207,7 +67670,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:10 GMT
+ - Wed, 22 Jan 2020 19:41:13 GMT
expires:
- '-1'
pragma:
@@ -66238,26 +67701,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66271,18 +67734,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66291,7 +67754,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:12 GMT
+ - Wed, 22 Jan 2020 19:41:14 GMT
expires:
- '-1'
pragma:
@@ -66322,26 +67785,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66355,18 +67818,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66375,7 +67838,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:13 GMT
+ - Wed, 22 Jan 2020 19:41:15 GMT
expires:
- '-1'
pragma:
@@ -66406,26 +67869,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66439,18 +67902,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66459,7 +67922,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:14 GMT
+ - Wed, 22 Jan 2020 19:41:16 GMT
expires:
- '-1'
pragma:
@@ -66490,26 +67953,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66523,18 +67986,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66543,7 +68006,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:16 GMT
+ - Wed, 22 Jan 2020 19:41:17 GMT
expires:
- '-1'
pragma:
@@ -66574,26 +68037,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66607,18 +68070,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66627,7 +68090,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:17 GMT
+ - Wed, 22 Jan 2020 19:41:18 GMT
expires:
- '-1'
pragma:
@@ -66658,26 +68121,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66691,18 +68154,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66711,7 +68174,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:17 GMT
+ - Wed, 22 Jan 2020 19:41:19 GMT
expires:
- '-1'
pragma:
@@ -66742,26 +68205,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66775,18 +68238,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66795,7 +68258,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:19 GMT
+ - Wed, 22 Jan 2020 19:41:19 GMT
expires:
- '-1'
pragma:
@@ -66826,26 +68289,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66859,18 +68322,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66879,7 +68342,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:20 GMT
+ - Wed, 22 Jan 2020 19:41:21 GMT
expires:
- '-1'
pragma:
@@ -66910,26 +68373,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -66943,18 +68406,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -66963,7 +68426,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:21 GMT
+ - Wed, 22 Jan 2020 19:41:22 GMT
expires:
- '-1'
pragma:
@@ -66994,26 +68457,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67027,18 +68490,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67047,7 +68510,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:22 GMT
+ - Wed, 22 Jan 2020 19:41:23 GMT
expires:
- '-1'
pragma:
@@ -67078,26 +68541,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67111,18 +68574,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67131,7 +68594,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:24 GMT
+ - Wed, 22 Jan 2020 19:41:24 GMT
expires:
- '-1'
pragma:
@@ -67162,26 +68625,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67195,18 +68658,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67215,7 +68678,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:24 GMT
+ - Wed, 22 Jan 2020 19:41:25 GMT
expires:
- '-1'
pragma:
@@ -67246,26 +68709,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67279,18 +68742,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67299,7 +68762,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:26 GMT
+ - Wed, 22 Jan 2020 19:41:26 GMT
expires:
- '-1'
pragma:
@@ -67330,26 +68793,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67363,18 +68826,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67383,7 +68846,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:27 GMT
+ - Wed, 22 Jan 2020 19:41:28 GMT
expires:
- '-1'
pragma:
@@ -67414,26 +68877,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67447,18 +68910,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67467,7 +68930,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:28 GMT
+ - Wed, 22 Jan 2020 19:41:28 GMT
expires:
- '-1'
pragma:
@@ -67498,26 +68961,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67531,18 +68994,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67551,7 +69014,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:29 GMT
+ - Wed, 22 Jan 2020 19:41:29 GMT
expires:
- '-1'
pragma:
@@ -67582,26 +69045,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67615,18 +69078,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67635,7 +69098,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:30 GMT
+ - Wed, 22 Jan 2020 19:41:30 GMT
expires:
- '-1'
pragma:
@@ -67666,26 +69129,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67699,18 +69162,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67719,7 +69182,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:31 GMT
+ - Wed, 22 Jan 2020 19:41:32 GMT
expires:
- '-1'
pragma:
@@ -67750,26 +69213,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67783,18 +69246,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67803,7 +69266,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:32 GMT
+ - Wed, 22 Jan 2020 19:41:32 GMT
expires:
- '-1'
pragma:
@@ -67834,26 +69297,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67867,18 +69330,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67887,7 +69350,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:34 GMT
+ - Wed, 22 Jan 2020 19:41:33 GMT
expires:
- '-1'
pragma:
@@ -67918,26 +69381,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -67951,18 +69414,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -67971,7 +69434,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:35 GMT
+ - Wed, 22 Jan 2020 19:41:34 GMT
expires:
- '-1'
pragma:
@@ -68002,26 +69465,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68035,18 +69498,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68055,7 +69518,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:36 GMT
+ - Wed, 22 Jan 2020 19:41:36 GMT
expires:
- '-1'
pragma:
@@ -68086,26 +69549,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68119,18 +69582,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68139,7 +69602,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:37 GMT
+ - Wed, 22 Jan 2020 19:41:36 GMT
expires:
- '-1'
pragma:
@@ -68170,26 +69633,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68203,18 +69666,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68223,7 +69686,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:38 GMT
+ - Wed, 22 Jan 2020 19:41:38 GMT
expires:
- '-1'
pragma:
@@ -68254,26 +69717,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68287,18 +69750,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68307,7 +69770,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:40 GMT
+ - Wed, 22 Jan 2020 19:41:39 GMT
expires:
- '-1'
pragma:
@@ -68338,26 +69801,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68371,18 +69834,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68391,7 +69854,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:41 GMT
+ - Wed, 22 Jan 2020 19:41:40 GMT
expires:
- '-1'
pragma:
@@ -68422,26 +69885,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68455,18 +69918,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68475,7 +69938,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:41 GMT
+ - Wed, 22 Jan 2020 19:41:41 GMT
expires:
- '-1'
pragma:
@@ -68506,26 +69969,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68539,18 +70002,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68559,7 +70022,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:42 GMT
+ - Wed, 22 Jan 2020 19:41:42 GMT
expires:
- '-1'
pragma:
@@ -68590,26 +70053,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68623,18 +70086,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68643,7 +70106,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:44 GMT
+ - Wed, 22 Jan 2020 19:41:43 GMT
expires:
- '-1'
pragma:
@@ -68674,26 +70137,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68707,18 +70170,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68727,7 +70190,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:45 GMT
+ - Wed, 22 Jan 2020 19:41:44 GMT
expires:
- '-1'
pragma:
@@ -68758,26 +70221,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68791,18 +70254,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68811,7 +70274,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:46 GMT
+ - Wed, 22 Jan 2020 19:41:46 GMT
expires:
- '-1'
pragma:
@@ -68842,26 +70305,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68875,18 +70338,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68895,7 +70358,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:48 GMT
+ - Wed, 22 Jan 2020 19:41:46 GMT
expires:
- '-1'
pragma:
@@ -68926,26 +70389,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -68959,18 +70422,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -68979,7 +70442,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:48 GMT
+ - Wed, 22 Jan 2020 19:41:48 GMT
expires:
- '-1'
pragma:
@@ -69010,26 +70473,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69043,18 +70506,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69063,7 +70526,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:49 GMT
+ - Wed, 22 Jan 2020 19:41:48 GMT
expires:
- '-1'
pragma:
@@ -69094,26 +70557,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69127,18 +70590,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69147,7 +70610,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:50 GMT
+ - Wed, 22 Jan 2020 19:41:50 GMT
expires:
- '-1'
pragma:
@@ -69178,26 +70641,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69211,18 +70674,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69231,7 +70694,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:51 GMT
+ - Wed, 22 Jan 2020 19:41:51 GMT
expires:
- '-1'
pragma:
@@ -69262,26 +70725,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69295,18 +70758,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69315,7 +70778,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:53 GMT
+ - Wed, 22 Jan 2020 19:41:52 GMT
expires:
- '-1'
pragma:
@@ -69346,26 +70809,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69379,18 +70842,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69399,7 +70862,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:54 GMT
+ - Wed, 22 Jan 2020 19:41:53 GMT
expires:
- '-1'
pragma:
@@ -69430,26 +70893,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69463,18 +70926,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69483,7 +70946,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:55 GMT
+ - Wed, 22 Jan 2020 19:41:54 GMT
expires:
- '-1'
pragma:
@@ -69514,26 +70977,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69547,18 +71010,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69567,7 +71030,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:57 GMT
+ - Wed, 22 Jan 2020 19:41:55 GMT
expires:
- '-1'
pragma:
@@ -69598,26 +71061,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69631,18 +71094,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69651,7 +71114,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:57 GMT
+ - Wed, 22 Jan 2020 19:41:56 GMT
expires:
- '-1'
pragma:
@@ -69682,26 +71145,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69715,18 +71178,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69735,7 +71198,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:07:59 GMT
+ - Wed, 22 Jan 2020 19:41:57 GMT
expires:
- '-1'
pragma:
@@ -69766,26 +71229,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69799,18 +71262,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69819,7 +71282,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:00 GMT
+ - Wed, 22 Jan 2020 19:41:58 GMT
expires:
- '-1'
pragma:
@@ -69850,26 +71313,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69883,18 +71346,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69903,7 +71366,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:01 GMT
+ - Wed, 22 Jan 2020 19:41:59 GMT
expires:
- '-1'
pragma:
@@ -69934,26 +71397,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -69967,18 +71430,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -69987,7 +71450,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:02 GMT
+ - Wed, 22 Jan 2020 19:42:00 GMT
expires:
- '-1'
pragma:
@@ -70018,26 +71481,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70051,18 +71514,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70071,7 +71534,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:03 GMT
+ - Wed, 22 Jan 2020 19:42:01 GMT
expires:
- '-1'
pragma:
@@ -70102,26 +71565,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70135,18 +71598,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70155,7 +71618,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:05 GMT
+ - Wed, 22 Jan 2020 19:42:03 GMT
expires:
- '-1'
pragma:
@@ -70186,26 +71649,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70219,18 +71682,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70239,7 +71702,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:06 GMT
+ - Wed, 22 Jan 2020 19:42:04 GMT
expires:
- '-1'
pragma:
@@ -70270,26 +71733,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70303,18 +71766,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70323,7 +71786,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:06 GMT
+ - Wed, 22 Jan 2020 19:42:18 GMT
expires:
- '-1'
pragma:
@@ -70354,26 +71817,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70387,18 +71850,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70407,7 +71870,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:08 GMT
+ - Wed, 22 Jan 2020 19:42:19 GMT
expires:
- '-1'
pragma:
@@ -70438,26 +71901,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70471,18 +71934,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70491,7 +71954,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:09 GMT
+ - Wed, 22 Jan 2020 19:42:19 GMT
expires:
- '-1'
pragma:
@@ -70522,26 +71985,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70555,18 +72018,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70575,7 +72038,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:10 GMT
+ - Wed, 22 Jan 2020 19:42:21 GMT
expires:
- '-1'
pragma:
@@ -70606,26 +72069,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70639,18 +72102,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70659,7 +72122,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:12 GMT
+ - Wed, 22 Jan 2020 19:42:22 GMT
expires:
- '-1'
pragma:
@@ -70690,26 +72153,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70723,18 +72186,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70743,7 +72206,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:12 GMT
+ - Wed, 22 Jan 2020 19:42:23 GMT
expires:
- '-1'
pragma:
@@ -70774,26 +72237,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70807,18 +72270,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70827,7 +72290,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:14 GMT
+ - Wed, 22 Jan 2020 19:42:24 GMT
expires:
- '-1'
pragma:
@@ -70858,26 +72321,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70891,18 +72354,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70911,7 +72374,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:15 GMT
+ - Wed, 22 Jan 2020 19:42:26 GMT
expires:
- '-1'
pragma:
@@ -70942,26 +72405,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -70975,18 +72438,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -70995,7 +72458,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:16 GMT
+ - Wed, 22 Jan 2020 19:42:26 GMT
expires:
- '-1'
pragma:
@@ -71026,26 +72489,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71059,18 +72522,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71079,7 +72542,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:18 GMT
+ - Wed, 22 Jan 2020 19:42:27 GMT
expires:
- '-1'
pragma:
@@ -71110,26 +72573,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71143,18 +72606,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71163,7 +72626,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:18 GMT
+ - Wed, 22 Jan 2020 19:42:27 GMT
expires:
- '-1'
pragma:
@@ -71194,26 +72657,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71227,18 +72690,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71247,7 +72710,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:19 GMT
+ - Wed, 22 Jan 2020 19:42:29 GMT
expires:
- '-1'
pragma:
@@ -71278,26 +72741,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71311,18 +72774,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71331,7 +72794,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:20 GMT
+ - Wed, 22 Jan 2020 19:42:31 GMT
expires:
- '-1'
pragma:
@@ -71362,26 +72825,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71395,18 +72858,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71415,7 +72878,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:22 GMT
+ - Wed, 22 Jan 2020 19:42:32 GMT
expires:
- '-1'
pragma:
@@ -71446,26 +72909,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71479,18 +72942,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71499,7 +72962,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:23 GMT
+ - Wed, 22 Jan 2020 19:42:33 GMT
expires:
- '-1'
pragma:
@@ -71530,26 +72993,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71563,18 +73026,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71583,7 +73046,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:24 GMT
+ - Wed, 22 Jan 2020 19:42:34 GMT
expires:
- '-1'
pragma:
@@ -71614,26 +73077,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71647,18 +73110,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71667,7 +73130,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:25 GMT
+ - Wed, 22 Jan 2020 19:42:35 GMT
expires:
- '-1'
pragma:
@@ -71698,26 +73161,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71731,18 +73194,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71751,7 +73214,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:26 GMT
+ - Wed, 22 Jan 2020 19:42:37 GMT
expires:
- '-1'
pragma:
@@ -71782,26 +73245,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71815,18 +73278,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71835,7 +73298,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:27 GMT
+ - Wed, 22 Jan 2020 19:42:38 GMT
expires:
- '-1'
pragma:
@@ -71866,26 +73329,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71899,18 +73362,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -71919,7 +73382,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:29 GMT
+ - Wed, 22 Jan 2020 19:42:38 GMT
expires:
- '-1'
pragma:
@@ -71950,26 +73413,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -71983,18 +73446,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72003,7 +73466,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:29 GMT
+ - Wed, 22 Jan 2020 19:42:40 GMT
expires:
- '-1'
pragma:
@@ -72034,26 +73497,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72067,18 +73530,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72087,7 +73550,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:31 GMT
+ - Wed, 22 Jan 2020 19:42:41 GMT
expires:
- '-1'
pragma:
@@ -72118,26 +73581,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72151,18 +73614,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72171,7 +73634,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:32 GMT
+ - Wed, 22 Jan 2020 19:42:42 GMT
expires:
- '-1'
pragma:
@@ -72202,26 +73665,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72235,18 +73698,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72255,7 +73718,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:33 GMT
+ - Wed, 22 Jan 2020 19:42:44 GMT
expires:
- '-1'
pragma:
@@ -72286,26 +73749,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72319,18 +73782,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72339,7 +73802,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:34 GMT
+ - Wed, 22 Jan 2020 19:42:45 GMT
expires:
- '-1'
pragma:
@@ -72370,26 +73833,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72403,18 +73866,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72423,7 +73886,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:36 GMT
+ - Wed, 22 Jan 2020 19:42:46 GMT
expires:
- '-1'
pragma:
@@ -72454,26 +73917,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72487,18 +73950,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72507,7 +73970,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:37 GMT
+ - Wed, 22 Jan 2020 19:42:46 GMT
expires:
- '-1'
pragma:
@@ -72538,26 +74001,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72571,18 +74034,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72591,7 +74054,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:38 GMT
+ - Wed, 22 Jan 2020 19:42:48 GMT
expires:
- '-1'
pragma:
@@ -72622,26 +74085,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72655,18 +74118,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72675,7 +74138,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:39 GMT
+ - Wed, 22 Jan 2020 19:42:48 GMT
expires:
- '-1'
pragma:
@@ -72706,26 +74169,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72739,18 +74202,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72759,7 +74222,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:41 GMT
+ - Wed, 22 Jan 2020 19:42:50 GMT
expires:
- '-1'
pragma:
@@ -72790,26 +74253,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72823,18 +74286,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72843,7 +74306,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:42 GMT
+ - Wed, 22 Jan 2020 19:42:51 GMT
expires:
- '-1'
pragma:
@@ -72874,26 +74337,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72907,18 +74370,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -72927,7 +74390,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:43 GMT
+ - Wed, 22 Jan 2020 19:42:53 GMT
expires:
- '-1'
pragma:
@@ -72958,26 +74421,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -72991,18 +74454,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73011,7 +74474,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:44 GMT
+ - Wed, 22 Jan 2020 19:42:54 GMT
expires:
- '-1'
pragma:
@@ -73042,26 +74505,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73075,18 +74538,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73095,7 +74558,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:45 GMT
+ - Wed, 22 Jan 2020 19:42:55 GMT
expires:
- '-1'
pragma:
@@ -73126,26 +74589,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73159,18 +74622,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73179,7 +74642,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:46 GMT
+ - Wed, 22 Jan 2020 19:42:56 GMT
expires:
- '-1'
pragma:
@@ -73210,26 +74673,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73243,18 +74706,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73263,7 +74726,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:48 GMT
+ - Wed, 22 Jan 2020 19:42:57 GMT
expires:
- '-1'
pragma:
@@ -73294,26 +74757,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73327,18 +74790,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73347,7 +74810,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:49 GMT
+ - Wed, 22 Jan 2020 19:42:57 GMT
expires:
- '-1'
pragma:
@@ -73378,26 +74841,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73411,18 +74874,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73431,7 +74894,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:50 GMT
+ - Wed, 22 Jan 2020 19:42:57 GMT
expires:
- '-1'
pragma:
@@ -73462,26 +74925,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73495,18 +74958,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73515,7 +74978,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:52 GMT
+ - Wed, 22 Jan 2020 19:43:00 GMT
expires:
- '-1'
pragma:
@@ -73546,26 +75009,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73579,18 +75042,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73599,7 +75062,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:53 GMT
+ - Wed, 22 Jan 2020 19:43:02 GMT
expires:
- '-1'
pragma:
@@ -73630,26 +75093,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73663,18 +75126,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73683,7 +75146,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:54 GMT
+ - Wed, 22 Jan 2020 19:43:02 GMT
expires:
- '-1'
pragma:
@@ -73714,26 +75177,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73747,18 +75210,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73767,7 +75230,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:55 GMT
+ - Wed, 22 Jan 2020 19:43:04 GMT
expires:
- '-1'
pragma:
@@ -73798,26 +75261,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73831,18 +75294,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73851,7 +75314,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:56 GMT
+ - Wed, 22 Jan 2020 19:43:04 GMT
expires:
- '-1'
pragma:
@@ -73882,26 +75345,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73915,18 +75378,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -73935,7 +75398,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:57 GMT
+ - Wed, 22 Jan 2020 19:43:06 GMT
expires:
- '-1'
pragma:
@@ -73966,26 +75429,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -73999,18 +75462,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74019,7 +75482,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:08:58 GMT
+ - Wed, 22 Jan 2020 19:43:07 GMT
expires:
- '-1'
pragma:
@@ -74050,26 +75513,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74083,18 +75546,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74103,7 +75566,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:00 GMT
+ - Wed, 22 Jan 2020 19:43:08 GMT
expires:
- '-1'
pragma:
@@ -74134,26 +75597,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74167,18 +75630,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74187,7 +75650,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:02 GMT
+ - Wed, 22 Jan 2020 19:43:09 GMT
expires:
- '-1'
pragma:
@@ -74218,26 +75681,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74251,18 +75714,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74271,7 +75734,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:02 GMT
+ - Wed, 22 Jan 2020 19:43:11 GMT
expires:
- '-1'
pragma:
@@ -74302,26 +75765,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74335,18 +75798,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74355,7 +75818,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:03 GMT
+ - Wed, 22 Jan 2020 19:43:11 GMT
expires:
- '-1'
pragma:
@@ -74386,26 +75849,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74419,18 +75882,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74439,7 +75902,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:04 GMT
+ - Wed, 22 Jan 2020 19:43:13 GMT
expires:
- '-1'
pragma:
@@ -74470,26 +75933,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74503,18 +75966,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74523,7 +75986,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:06 GMT
+ - Wed, 22 Jan 2020 19:43:14 GMT
expires:
- '-1'
pragma:
@@ -74554,26 +76017,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74587,18 +76050,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74607,7 +76070,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:07 GMT
+ - Wed, 22 Jan 2020 19:43:15 GMT
expires:
- '-1'
pragma:
@@ -74638,26 +76101,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74671,18 +76134,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74691,7 +76154,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:08 GMT
+ - Wed, 22 Jan 2020 19:43:16 GMT
expires:
- '-1'
pragma:
@@ -74722,26 +76185,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74755,18 +76218,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74775,7 +76238,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:10 GMT
+ - Wed, 22 Jan 2020 19:43:17 GMT
expires:
- '-1'
pragma:
@@ -74806,26 +76269,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74839,18 +76302,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74859,7 +76322,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:10 GMT
+ - Wed, 22 Jan 2020 19:43:18 GMT
expires:
- '-1'
pragma:
@@ -74890,26 +76353,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -74923,18 +76386,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -74943,7 +76406,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:12 GMT
+ - Wed, 22 Jan 2020 19:43:19 GMT
expires:
- '-1'
pragma:
@@ -74974,26 +76437,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75007,18 +76470,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75027,7 +76490,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:14 GMT
+ - Wed, 22 Jan 2020 19:43:21 GMT
expires:
- '-1'
pragma:
@@ -75058,26 +76521,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75091,18 +76554,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75111,7 +76574,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:15 GMT
+ - Wed, 22 Jan 2020 19:43:21 GMT
expires:
- '-1'
pragma:
@@ -75142,26 +76605,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75175,18 +76638,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75195,7 +76658,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:16 GMT
+ - Wed, 22 Jan 2020 19:43:23 GMT
expires:
- '-1'
pragma:
@@ -75226,26 +76689,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75259,18 +76722,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75279,7 +76742,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:17 GMT
+ - Wed, 22 Jan 2020 19:43:24 GMT
expires:
- '-1'
pragma:
@@ -75310,26 +76773,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75343,18 +76806,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75363,7 +76826,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:18 GMT
+ - Wed, 22 Jan 2020 19:43:24 GMT
expires:
- '-1'
pragma:
@@ -75394,26 +76857,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75427,18 +76890,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75447,7 +76910,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:19 GMT
+ - Wed, 22 Jan 2020 19:43:26 GMT
expires:
- '-1'
pragma:
@@ -75478,26 +76941,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75511,18 +76974,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75531,7 +76994,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:21 GMT
+ - Wed, 22 Jan 2020 19:43:27 GMT
expires:
- '-1'
pragma:
@@ -75562,26 +77025,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75595,18 +77058,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75615,7 +77078,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:21 GMT
+ - Wed, 22 Jan 2020 19:43:29 GMT
expires:
- '-1'
pragma:
@@ -75646,26 +77109,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75679,18 +77142,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75699,7 +77162,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:23 GMT
+ - Wed, 22 Jan 2020 19:43:30 GMT
expires:
- '-1'
pragma:
@@ -75730,26 +77193,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75763,18 +77226,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75783,7 +77246,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:24 GMT
+ - Wed, 22 Jan 2020 19:43:31 GMT
expires:
- '-1'
pragma:
@@ -75814,26 +77277,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75847,18 +77310,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75867,7 +77330,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:25 GMT
+ - Wed, 22 Jan 2020 19:43:32 GMT
expires:
- '-1'
pragma:
@@ -75898,26 +77361,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -75931,18 +77394,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -75951,7 +77414,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:27 GMT
+ - Wed, 22 Jan 2020 19:43:33 GMT
expires:
- '-1'
pragma:
@@ -75982,26 +77445,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76015,18 +77478,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76035,7 +77498,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:27 GMT
+ - Wed, 22 Jan 2020 19:43:34 GMT
expires:
- '-1'
pragma:
@@ -76066,26 +77529,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76099,18 +77562,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76119,7 +77582,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:29 GMT
+ - Wed, 22 Jan 2020 19:43:35 GMT
expires:
- '-1'
pragma:
@@ -76150,26 +77613,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76183,18 +77646,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76203,7 +77666,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:30 GMT
+ - Wed, 22 Jan 2020 19:43:36 GMT
expires:
- '-1'
pragma:
@@ -76234,26 +77697,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76267,18 +77730,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76287,7 +77750,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:31 GMT
+ - Wed, 22 Jan 2020 19:43:38 GMT
expires:
- '-1'
pragma:
@@ -76318,26 +77781,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76351,18 +77814,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76371,7 +77834,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:33 GMT
+ - Wed, 22 Jan 2020 19:43:39 GMT
expires:
- '-1'
pragma:
@@ -76402,26 +77865,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76435,18 +77898,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76455,7 +77918,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:34 GMT
+ - Wed, 22 Jan 2020 19:43:40 GMT
expires:
- '-1'
pragma:
@@ -76486,26 +77949,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76519,18 +77982,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76539,7 +78002,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:35 GMT
+ - Wed, 22 Jan 2020 19:43:41 GMT
expires:
- '-1'
pragma:
@@ -76570,26 +78033,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76603,18 +78066,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76623,7 +78086,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:36 GMT
+ - Wed, 22 Jan 2020 19:43:42 GMT
expires:
- '-1'
pragma:
@@ -76654,26 +78117,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76687,18 +78150,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76707,7 +78170,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:37 GMT
+ - Wed, 22 Jan 2020 19:43:44 GMT
expires:
- '-1'
pragma:
@@ -76738,26 +78201,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76771,18 +78234,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76791,7 +78254,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:39 GMT
+ - Wed, 22 Jan 2020 19:43:45 GMT
expires:
- '-1'
pragma:
@@ -76822,26 +78285,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76855,18 +78318,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76875,7 +78338,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:40 GMT
+ - Wed, 22 Jan 2020 19:43:45 GMT
expires:
- '-1'
pragma:
@@ -76906,26 +78369,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -76939,18 +78402,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -76959,7 +78422,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:41 GMT
+ - Wed, 22 Jan 2020 19:43:47 GMT
expires:
- '-1'
pragma:
@@ -76990,26 +78453,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77023,18 +78486,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77043,7 +78506,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:43 GMT
+ - Wed, 22 Jan 2020 19:43:48 GMT
expires:
- '-1'
pragma:
@@ -77074,26 +78537,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77107,18 +78570,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77127,7 +78590,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:44 GMT
+ - Wed, 22 Jan 2020 19:43:49 GMT
expires:
- '-1'
pragma:
@@ -77158,26 +78621,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77191,18 +78654,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77211,7 +78674,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:45 GMT
+ - Wed, 22 Jan 2020 19:43:50 GMT
expires:
- '-1'
pragma:
@@ -77242,26 +78705,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77275,18 +78738,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77295,7 +78758,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:46 GMT
+ - Wed, 22 Jan 2020 19:43:52 GMT
expires:
- '-1'
pragma:
@@ -77326,26 +78789,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77359,18 +78822,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77379,7 +78842,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:48 GMT
+ - Wed, 22 Jan 2020 19:43:52 GMT
expires:
- '-1'
pragma:
@@ -77410,26 +78873,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77443,18 +78906,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77463,7 +78926,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:49 GMT
+ - Wed, 22 Jan 2020 19:43:54 GMT
expires:
- '-1'
pragma:
@@ -77494,26 +78957,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77527,18 +78990,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77547,7 +79010,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:49 GMT
+ - Wed, 22 Jan 2020 19:43:55 GMT
expires:
- '-1'
pragma:
@@ -77578,26 +79041,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77611,18 +79074,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77631,7 +79094,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:51 GMT
+ - Wed, 22 Jan 2020 19:43:56 GMT
expires:
- '-1'
pragma:
@@ -77662,26 +79125,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77695,18 +79158,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77715,7 +79178,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:52 GMT
+ - Wed, 22 Jan 2020 19:43:57 GMT
expires:
- '-1'
pragma:
@@ -77746,26 +79209,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77779,18 +79242,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77799,7 +79262,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:54 GMT
+ - Wed, 22 Jan 2020 19:43:58 GMT
expires:
- '-1'
pragma:
@@ -77830,26 +79293,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77863,18 +79326,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77883,7 +79346,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:55 GMT
+ - Wed, 22 Jan 2020 19:43:59 GMT
expires:
- '-1'
pragma:
@@ -77914,26 +79377,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -77947,18 +79410,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -77967,7 +79430,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:56 GMT
+ - Wed, 22 Jan 2020 19:44:01 GMT
expires:
- '-1'
pragma:
@@ -77998,26 +79461,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78031,18 +79494,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78051,7 +79514,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:57 GMT
+ - Wed, 22 Jan 2020 19:44:02 GMT
expires:
- '-1'
pragma:
@@ -78082,26 +79545,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78115,18 +79578,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78135,7 +79598,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:09:59 GMT
+ - Wed, 22 Jan 2020 19:44:02 GMT
expires:
- '-1'
pragma:
@@ -78166,26 +79629,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78199,18 +79662,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78219,7 +79682,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:00 GMT
+ - Wed, 22 Jan 2020 19:44:04 GMT
expires:
- '-1'
pragma:
@@ -78250,26 +79713,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78283,18 +79746,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78303,7 +79766,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:01 GMT
+ - Wed, 22 Jan 2020 19:44:05 GMT
expires:
- '-1'
pragma:
@@ -78334,26 +79797,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78367,18 +79830,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78387,7 +79850,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:03 GMT
+ - Wed, 22 Jan 2020 19:44:06 GMT
expires:
- '-1'
pragma:
@@ -78418,26 +79881,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78451,18 +79914,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78471,7 +79934,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:03 GMT
+ - Wed, 22 Jan 2020 19:44:07 GMT
expires:
- '-1'
pragma:
@@ -78502,26 +79965,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78535,18 +79998,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78555,7 +80018,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:04 GMT
+ - Wed, 22 Jan 2020 19:44:09 GMT
expires:
- '-1'
pragma:
@@ -78586,26 +80049,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78619,18 +80082,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78639,7 +80102,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:06 GMT
+ - Wed, 22 Jan 2020 19:44:10 GMT
expires:
- '-1'
pragma:
@@ -78670,26 +80133,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78703,18 +80166,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78723,7 +80186,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:07 GMT
+ - Wed, 22 Jan 2020 19:44:11 GMT
expires:
- '-1'
pragma:
@@ -78754,26 +80217,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78787,18 +80250,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78807,7 +80270,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:09 GMT
+ - Wed, 22 Jan 2020 19:44:12 GMT
expires:
- '-1'
pragma:
@@ -78838,26 +80301,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78871,18 +80334,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78891,7 +80354,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:10 GMT
+ - Wed, 22 Jan 2020 19:44:13 GMT
expires:
- '-1'
pragma:
@@ -78922,26 +80385,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -78955,18 +80418,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -78975,7 +80438,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:11 GMT
+ - Wed, 22 Jan 2020 19:44:14 GMT
expires:
- '-1'
pragma:
@@ -79006,26 +80469,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79039,18 +80502,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79059,7 +80522,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:13 GMT
+ - Wed, 22 Jan 2020 19:44:15 GMT
expires:
- '-1'
pragma:
@@ -79090,26 +80553,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79123,18 +80586,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79143,7 +80606,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:14 GMT
+ - Wed, 22 Jan 2020 19:44:17 GMT
expires:
- '-1'
pragma:
@@ -79174,26 +80637,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79207,18 +80670,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79227,7 +80690,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:15 GMT
+ - Wed, 22 Jan 2020 19:44:18 GMT
expires:
- '-1'
pragma:
@@ -79258,26 +80721,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79291,18 +80754,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79311,7 +80774,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:16 GMT
+ - Wed, 22 Jan 2020 19:44:19 GMT
expires:
- '-1'
pragma:
@@ -79342,26 +80805,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79375,18 +80838,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79395,7 +80858,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:18 GMT
+ - Wed, 22 Jan 2020 19:44:20 GMT
expires:
- '-1'
pragma:
@@ -79426,26 +80889,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79459,18 +80922,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79479,7 +80942,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:19 GMT
+ - Wed, 22 Jan 2020 19:44:21 GMT
expires:
- '-1'
pragma:
@@ -79510,26 +80973,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79543,18 +81006,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79563,7 +81026,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:20 GMT
+ - Wed, 22 Jan 2020 19:44:22 GMT
expires:
- '-1'
pragma:
@@ -79594,26 +81057,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79627,18 +81090,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79647,7 +81110,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:21 GMT
+ - Wed, 22 Jan 2020 19:44:24 GMT
expires:
- '-1'
pragma:
@@ -79678,26 +81141,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79711,18 +81174,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79731,7 +81194,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:23 GMT
+ - Wed, 22 Jan 2020 19:44:25 GMT
expires:
- '-1'
pragma:
@@ -79762,26 +81225,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79795,18 +81258,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79815,7 +81278,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:23 GMT
+ - Wed, 22 Jan 2020 19:44:26 GMT
expires:
- '-1'
pragma:
@@ -79846,26 +81309,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79879,18 +81342,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79899,7 +81362,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:25 GMT
+ - Wed, 22 Jan 2020 19:44:27 GMT
expires:
- '-1'
pragma:
@@ -79930,26 +81393,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -79963,18 +81426,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -79983,7 +81446,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:26 GMT
+ - Wed, 22 Jan 2020 19:44:28 GMT
expires:
- '-1'
pragma:
@@ -80014,26 +81477,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80047,18 +81510,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80067,7 +81530,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:27 GMT
+ - Wed, 22 Jan 2020 19:44:29 GMT
expires:
- '-1'
pragma:
@@ -80098,26 +81561,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80131,18 +81594,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80151,7 +81614,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:28 GMT
+ - Wed, 22 Jan 2020 19:44:31 GMT
expires:
- '-1'
pragma:
@@ -80182,26 +81645,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80215,18 +81678,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80235,7 +81698,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:30 GMT
+ - Wed, 22 Jan 2020 19:44:31 GMT
expires:
- '-1'
pragma:
@@ -80266,26 +81729,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80299,18 +81762,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80319,7 +81782,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:31 GMT
+ - Wed, 22 Jan 2020 19:44:33 GMT
expires:
- '-1'
pragma:
@@ -80350,26 +81813,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80383,18 +81846,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80403,7 +81866,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:33 GMT
+ - Wed, 22 Jan 2020 19:44:34 GMT
expires:
- '-1'
pragma:
@@ -80434,26 +81897,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80467,18 +81930,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80487,7 +81950,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:33 GMT
+ - Wed, 22 Jan 2020 19:44:35 GMT
expires:
- '-1'
pragma:
@@ -80518,26 +81981,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80551,18 +82014,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80571,7 +82034,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:36 GMT
+ - Wed, 22 Jan 2020 19:44:37 GMT
expires:
- '-1'
pragma:
@@ -80602,26 +82065,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80635,18 +82098,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80655,7 +82118,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:37 GMT
+ - Wed, 22 Jan 2020 19:44:37 GMT
expires:
- '-1'
pragma:
@@ -80686,26 +82149,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80719,18 +82182,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80739,7 +82202,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:38 GMT
+ - Wed, 22 Jan 2020 19:44:39 GMT
expires:
- '-1'
pragma:
@@ -80770,26 +82233,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80803,18 +82266,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80823,7 +82286,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:39 GMT
+ - Wed, 22 Jan 2020 19:44:40 GMT
expires:
- '-1'
pragma:
@@ -80854,26 +82317,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80887,18 +82350,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80907,7 +82370,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:41 GMT
+ - Wed, 22 Jan 2020 19:44:41 GMT
expires:
- '-1'
pragma:
@@ -80938,26 +82401,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -80971,18 +82434,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -80991,7 +82454,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:42 GMT
+ - Wed, 22 Jan 2020 19:44:43 GMT
expires:
- '-1'
pragma:
@@ -81022,26 +82485,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81055,18 +82518,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81075,7 +82538,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:43 GMT
+ - Wed, 22 Jan 2020 19:44:43 GMT
expires:
- '-1'
pragma:
@@ -81106,26 +82569,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81139,18 +82602,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81159,7 +82622,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:45 GMT
+ - Wed, 22 Jan 2020 19:44:44 GMT
expires:
- '-1'
pragma:
@@ -81190,26 +82653,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81223,18 +82686,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81243,7 +82706,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:46 GMT
+ - Wed, 22 Jan 2020 19:44:46 GMT
expires:
- '-1'
pragma:
@@ -81274,26 +82737,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81307,18 +82770,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81327,7 +82790,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:47 GMT
+ - Wed, 22 Jan 2020 19:44:47 GMT
expires:
- '-1'
pragma:
@@ -81358,26 +82821,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81391,18 +82854,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81411,7 +82874,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:49 GMT
+ - Wed, 22 Jan 2020 19:44:48 GMT
expires:
- '-1'
pragma:
@@ -81442,26 +82905,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81475,18 +82938,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81495,7 +82958,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:49 GMT
+ - Wed, 22 Jan 2020 19:44:49 GMT
expires:
- '-1'
pragma:
@@ -81526,26 +82989,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81559,18 +83022,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81579,7 +83042,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:51 GMT
+ - Wed, 22 Jan 2020 19:44:51 GMT
expires:
- '-1'
pragma:
@@ -81610,26 +83073,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81643,18 +83106,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81663,7 +83126,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:52 GMT
+ - Wed, 22 Jan 2020 19:44:51 GMT
expires:
- '-1'
pragma:
@@ -81694,26 +83157,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81727,18 +83190,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81747,7 +83210,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:53 GMT
+ - Wed, 22 Jan 2020 19:44:53 GMT
expires:
- '-1'
pragma:
@@ -81778,26 +83241,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81811,18 +83274,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81831,7 +83294,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:55 GMT
+ - Wed, 22 Jan 2020 19:44:54 GMT
expires:
- '-1'
pragma:
@@ -81862,26 +83325,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81895,18 +83358,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81915,7 +83378,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:57 GMT
+ - Wed, 22 Jan 2020 19:44:55 GMT
expires:
- '-1'
pragma:
@@ -81946,26 +83409,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -81979,18 +83442,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -81999,7 +83462,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:57 GMT
+ - Wed, 22 Jan 2020 19:44:57 GMT
expires:
- '-1'
pragma:
@@ -82030,26 +83493,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82063,18 +83526,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82083,7 +83546,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:10:58 GMT
+ - Wed, 22 Jan 2020 19:44:58 GMT
expires:
- '-1'
pragma:
@@ -82114,26 +83577,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82147,18 +83610,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82167,7 +83630,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:00 GMT
+ - Wed, 22 Jan 2020 19:44:59 GMT
expires:
- '-1'
pragma:
@@ -82198,26 +83661,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82231,18 +83694,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82251,7 +83714,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:01 GMT
+ - Wed, 22 Jan 2020 19:45:00 GMT
expires:
- '-1'
pragma:
@@ -82282,26 +83745,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82315,18 +83778,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82335,7 +83798,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:03 GMT
+ - Wed, 22 Jan 2020 19:45:01 GMT
expires:
- '-1'
pragma:
@@ -82366,26 +83829,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82399,18 +83862,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82419,7 +83882,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:04 GMT
+ - Wed, 22 Jan 2020 19:45:03 GMT
expires:
- '-1'
pragma:
@@ -82450,26 +83913,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82483,18 +83946,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82503,7 +83966,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:05 GMT
+ - Wed, 22 Jan 2020 19:45:04 GMT
expires:
- '-1'
pragma:
@@ -82534,26 +83997,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
\ \"clusterCodeVersion\": \"6.5.676.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82567,18 +84030,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82587,7 +84050,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:07 GMT
+ - Wed, 22 Jan 2020 19:45:05 GMT
expires:
- '-1'
pragma:
@@ -82618,26 +84081,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g -c
User-Agent:
- python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2
- azure-mgmt-servicefabric/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82651,18 +84114,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82671,7 +84134,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:08 GMT
+ - Wed, 22 Jan 2020 19:45:06 GMT
expires:
- '-1'
pragma:
@@ -82702,27 +84165,27 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637117087295410023\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
+ \ \"etag\": \"W/\\\"637153179368236819\\\"\",\r\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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -82736,18 +84199,18 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\r\n}"
+ \ }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -82756,7 +84219,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:11:09 GMT
+ - Wed, 22 Jan 2020 19:45:08 GMT
expires:
- '-1'
pragma:
@@ -82787,18 +84250,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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":"2019-12-12T00:49:15Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-22T19:23:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -82807,7 +84270,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:10 GMT
+ - Wed, 22 Jan 2020 19:45:08 GMT
expires:
- '-1'
pragma:
@@ -82833,11 +84296,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
@@ -82846,15 +84309,15 @@ interactions:
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/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n \"type\":
+ \ \"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\": \"7bf0ba8d-6e0f-4b8a-8f9e-59306f9ab709\",\r\n
+ \"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/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\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
@@ -82875,7 +84338,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:11 GMT
+ - Wed, 22 Jan 2020 19:45:09 GMT
expires:
- '-1'
pragma:
@@ -82892,7 +84355,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3f9bb422-f42a-4838-9787-4fa3b7d6846d
+ - 94a321ac-e26a-445c-8a46-4c4c2da0a8f4
status:
code: 200
message: OK
@@ -82908,11 +84371,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
@@ -82921,7 +84384,7 @@ interactions:
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/\\\"e8e49c51-511f-4b15-abe1-c9cd18243bb5\\\"\",\r\n \"properties\":
+ \ \"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
@@ -82941,7 +84404,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:11 GMT
+ - Wed, 22 Jan 2020 19:45:10 GMT
expires:
- '-1'
pragma:
@@ -82958,7 +84421,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e260edd0-4e0b-43ec-be7c-9a09b088c010
+ - 4ebfe525-a720-4bb7-9ade-afdb2ef9a3a3
status:
code: 200
message: OK
@@ -82978,11 +84441,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: PUT
@@ -82990,14 +84453,14 @@ interactions:
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/\\\"42501193-bece-48f9-9da5-f3b73e5e097e\\\"\",\r\n \"properties\":
+ \ \"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/7de0682d-8f1a-4f7c-b6a1-dbc12e55c303?api-version=2019-09-01
+ - 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:
@@ -83005,7 +84468,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:12 GMT
+ - Wed, 22 Jan 2020 19:45:10 GMT
expires:
- '-1'
pragma:
@@ -83018,7 +84481,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 332f7b15-a479-4d75-9087-925441897a53
+ - 9d9c4e4d-95de-4668-99e4-bb706849dff5
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -83036,13 +84499,13 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/7de0682d-8f1a-4f7c-b6a1-dbc12e55c303?api-version=2019-09-01
+ 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}"
@@ -83054,7 +84517,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:16 GMT
+ - Wed, 22 Jan 2020 19:45:15 GMT
expires:
- '-1'
pragma:
@@ -83071,7 +84534,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - eb7573e4-6161-40ea-a0ac-a0991107bd97
+ - 561080c4-9164-4a27-ac0a-d109801fa524
status:
code: 200
message: OK
@@ -83087,17 +84550,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/\\\"126e10f3-0c86-423a-81ba-b083874d78b1\\\"\",\r\n \"properties\":
+ \ \"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\":
@@ -83110,9 +84573,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:17 GMT
+ - Wed, 22 Jan 2020 19:45:15 GMT
etag:
- - W/"126e10f3-0c86-423a-81ba-b083874d78b1"
+ - W/"60dd2174-c9ba-4c19-aacb-1b9b9b7d7fd9"
expires:
- '-1'
pragma:
@@ -83129,7 +84592,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5a71e024-93b9-4f91-a4b1-7a3bc0283e76
+ - 64d85d5b-0323-4713-b7b2-05827ef3f391
status:
code: 200
message: OK
@@ -83150,11 +84613,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ azure-mgmt-network/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: PUT
@@ -83162,9 +84625,9 @@ interactions:
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/\\\"dd7ad4ba-265a-4f01-b382-572636dbe379\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"81acd803-516a-4a9a-a1fd-5b266054a824\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"60489557-d4f5-437c-a806-98c7082b84b0\",\r\n \"publicIPAddressVersion\":
+ \ \"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
@@ -83172,7 +84635,7 @@ interactions:
\ \"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/3c95d6e1-e6ba-4a7b-8014-314b75b898f7?api-version=2019-09-01
+ - 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:
@@ -83180,7 +84643,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:20 GMT
+ - Wed, 22 Jan 2020 19:45:17 GMT
expires:
- '-1'
pragma:
@@ -83193,7 +84656,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 832051ee-daae-4577-8483-64d5d833a91a
+ - c830a76a-c6f0-4266-ba3c-18d2069f5300
x-ms-ratelimit-remaining-subscription-writes:
- '1198'
status:
@@ -83211,13 +84674,13 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/3c95d6e1-e6ba-4a7b-8014-314b75b898f7?api-version=2019-09-01
+ 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}"
@@ -83229,7 +84692,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:22 GMT
+ - Wed, 22 Jan 2020 19:45:19 GMT
expires:
- '-1'
pragma:
@@ -83246,7 +84709,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bbd545e2-bae9-4d59-b3b5-45b2c05a0ef3
+ - b276d7dc-0fdb-4f1c-82c5-8820e06af00d
status:
code: 200
message: OK
@@ -83262,19 +84725,19 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/\\\"899a601e-edc6-44c5-bc01-417a8854f73d\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"93bfeaa3-4d82-4775-b274-52ef1daee138\\\"\",\r\n \"location\":
\"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"60489557-d4f5-437c-a806-98c7082b84b0\",\r\n \"publicIPAddressVersion\":
+ \ \"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
@@ -83288,9 +84751,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:22 GMT
+ - Wed, 22 Jan 2020 19:45:19 GMT
etag:
- - W/"899a601e-edc6-44c5-bc01-417a8854f73d"
+ - W/"93bfeaa3-4d82-4775-b274-52ef1daee138"
expires:
- '-1'
pragma:
@@ -83307,29 +84770,29 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0bfd16b3-854c-4346-9bab-3f7b92812c8c
+ - 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-ijc3wu2qr1",
+ 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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"},
- "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"},
- "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricGatewayProbe"},
+ "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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"},
- "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"},
- "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/probes/FabricHttpGatewayProbe"},
+ {"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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig"},
+ "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:
@@ -83346,100 +84809,100 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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-ijc3wu2qr1?api-version=2019-09-01
+ 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-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\":
+ 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\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n
+ {\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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n
+ \"/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-ijc3wu2qr1/inboundNatPools/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
\ }\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-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n
+ \"/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-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\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-ijc3wu2qr1/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-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n
+ {\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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\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-ijc3wu2qr1/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-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n
+ {\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-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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/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-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\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/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-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"/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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n
+ {\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/6a809896-afa7-4f2f-8d13-729af2f70541?api-version=2019-09-01
+ - 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:
@@ -83447,7 +84910,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:23 GMT
+ - Wed, 22 Jan 2020 19:45:21 GMT
expires:
- '-1'
pragma:
@@ -83460,7 +84923,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f1244bf7-e42a-4797-a724-3465a5c09c94
+ - cc125662-d1a6-4df0-911f-dbeef3c13f7b
x-ms-ratelimit-remaining-subscription-writes:
- '1197'
status:
@@ -83478,13 +84941,13 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6a809896-afa7-4f2f-8d13-729af2f70541?api-version=2019-09-01
+ 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}"
@@ -83496,7 +84959,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:55 GMT
+ - Wed, 22 Jan 2020 19:45:52 GMT
expires:
- '-1'
pragma:
@@ -83513,7 +84976,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 43f0d9b0-d7bb-45e1-87a3-3ae6811949ef
+ - 632f7f7d-742e-4a15-b0ac-0a04770662e8
status:
code: 200
message: OK
@@ -83529,93 +84992,93 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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-ijc3wu2qr1?api-version=2019-09-01
+ 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-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\":
+ 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\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n
+ {\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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n
+ \"/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-ijc3wu2qr1/inboundNatPools/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
\ }\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-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n
+ \"/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-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\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-ijc3wu2qr1/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-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n
+ {\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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\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-ijc3wu2qr1/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-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n
+ {\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-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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/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-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\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/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-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"/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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n
+ {\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:
@@ -83626,9 +85089,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:55 GMT
+ - Wed, 22 Jan 2020 19:45:53 GMT
etag:
- - W/"159a812e-f489-46e3-a2bd-c5030b16fb6b"
+ - W/"788d3d13-a6f9-49a5-bcbe-9155382b8c6f"
expires:
- '-1'
pragma:
@@ -83645,7 +85108,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a76d6a89-3782-4499-bc0d-3de21ee1330d
+ - 299ccbc0-a2b4-444c-b07b-cfc004215af5
status:
code: 200
message: OK
@@ -83661,95 +85124,95 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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-ijc3wu2qr1?api-version=2019-09-01
+ 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-ijc3wu2qr1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n \"type\":
+ 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\": \"51cb5338-10de-4aa7-9ab6-d86e787d92d5\",\r\n
+ {\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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n
+ \"/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-ijc3wu2qr1/inboundNatPools/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
\ }\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-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\r\n
+ \"/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-ijc3wu2qr1/loadBalancingRules/LBRule\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\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-ijc3wu2qr1/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-ijc3wu2qr1/probes/FabricGatewayProbe\"\r\n
+ {\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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\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-ijc3wu2qr1/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-ijc3wu2qr1/probes/FabricHttpGatewayProbe\"\r\n
+ {\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-ijc3wu2qr1/probes/FabricGatewayProbe\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\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-ijc3wu2qr1/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/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-ijc3wu2qr1/probes/FabricHttpGatewayProbe\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"/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-ijc3wu2qr1/loadBalancingRules/LBHttpRule\"\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/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-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n
- \ \"etag\": \"W/\\\"159a812e-f489-46e3-a2bd-c5030b16fb6b\\\"\",\r\n
+ \"/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-ijc3wu2qr1/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n
+ {\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:
@@ -83760,9 +85223,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:55 GMT
+ - Wed, 22 Jan 2020 19:45:54 GMT
etag:
- - W/"159a812e-f489-46e3-a2bd-c5030b16fb6b"
+ - W/"788d3d13-a6f9-49a5-bcbe-9155382b8c6f"
expires:
- '-1'
pragma:
@@ -83779,7 +85242,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5e1dd530-06f4-4875-a9c5-241756059a4c
+ - 66de449c-fa59-438b-94ef-9817ca012aa9
status:
code: 200
message: OK
@@ -83795,11 +85258,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
@@ -83821,15 +85284,15 @@ interactions:
\ \"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/a0223246ebeb4056a99771dc17f5fa0d\",\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
- \ },\r\n \"imageReference\": {\r\n \"publisher\":
- \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n
- \ \"sku\": \"2016-Datacenter\",\r\n \"version\":
+ {\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
@@ -83837,13 +85300,13 @@ interactions:
\ \"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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n
+ \"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\":\"xjb4dma6imrnu3\"}\r\n
+ {\"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\":
@@ -83852,17 +85315,17 @@ interactions:
\"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\": \"6dd7c248-fc98-49c2-be5b-126efdb55cf2\"\r\n
+ false,\r\n \"uniqueId\": \"9800e7df-fcad-4131-b988-1868b0daf3ba\"\r\n
\ }\r\n }\r\n ]\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '5968'
+ - '6002'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:57 GMT
+ - Wed, 22 Jan 2020 19:45:55 GMT
expires:
- '-1'
pragma:
@@ -83879,7 +85342,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;895
+ - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;889
status:
code: 200
message: OK
@@ -83899,15 +85362,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx1?api-version=2019-04-01
+ 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: ''
@@ -83919,11 +85382,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:11:59 GMT
+ - 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/93fc777d-5d7f-4bc5-ae1e-fdb1581639b2?monitor=true&api-version=2019-04-01
+ - 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:
@@ -83949,16 +85412,16 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/93fc777d-5d7f-4bc5-ae1e-fdb1581639b2?monitor=true&api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx1","name":"sfrpcliijc3wu2qrg3wwx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:11:59.2106231Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx1.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx1.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -83967,7 +85430,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:12:17 GMT
+ - Wed, 22 Jan 2020 19:46:15 GMT
expires:
- '-1'
pragma:
@@ -83997,18 +85460,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx1?api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx1","name":"sfrpcliijc3wu2qrg3wwx1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:11:59.2575164Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:11:59.2106231Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx1.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx1.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84017,7 +85480,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:12:18 GMT
+ - Wed, 22 Jan 2020 19:46:17 GMT
expires:
- '-1'
pragma:
@@ -84049,15 +85512,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx1/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -84069,7 +85532,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:12:19 GMT
+ - Wed, 22 Jan 2020 19:46:18 GMT
expires:
- '-1'
pragma:
@@ -84105,15 +85568,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx2?api-version=2019-04-01
+ 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: ''
@@ -84125,11 +85588,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:12:21 GMT
+ - 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/996e6ce1-6a47-41d7-beba-5d352d16f165?monitor=true&api-version=2019-04-01
+ - 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:
@@ -84155,16 +85618,16 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/996e6ce1-6a47-41d7-beba-5d352d16f165?monitor=true&api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx2","name":"sfrpcliijc3wu2qrg3wwx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:21.3367288Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx2.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx2.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84173,7 +85636,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:12:39 GMT
+ - Wed, 22 Jan 2020 19:46:37 GMT
expires:
- '-1'
pragma:
@@ -84203,18 +85666,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx2?api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx2","name":"sfrpcliijc3wu2qrg3wwx2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:21.4148678Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:21.3367288Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx2.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx2.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84223,7 +85686,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:12:41 GMT
+ - Wed, 22 Jan 2020 19:46:39 GMT
expires:
- '-1'
pragma:
@@ -84255,15 +85718,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx2/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -84275,7 +85738,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:12:41 GMT
+ - Wed, 22 Jan 2020 19:46:39 GMT
expires:
- '-1'
pragma:
@@ -84311,15 +85774,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx3?api-version=2019-04-01
+ 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: ''
@@ -84331,11 +85794,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:12:43 GMT
+ - 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/c2b9ef56-944e-4990-bb15-0dfeb166d809?monitor=true&api-version=2019-04-01
+ - 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:
@@ -84361,16 +85824,16 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/c2b9ef56-944e-4990-bb15-0dfeb166d809?monitor=true&api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx3","name":"sfrpcliijc3wu2qrg3wwx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:43.4776402Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx3.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx3.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84379,7 +85842,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:01 GMT
+ - Wed, 22 Jan 2020 19:46:59 GMT
expires:
- '-1'
pragma:
@@ -84409,18 +85872,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx3?api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx3","name":"sfrpcliijc3wu2qrg3wwx3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:12:43.5557953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:12:43.4776402Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx3.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx3.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx3.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84429,7 +85892,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:03 GMT
+ - Wed, 22 Jan 2020 19:46:59 GMT
expires:
- '-1'
pragma:
@@ -84461,15 +85924,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx3/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -84481,7 +85944,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:03 GMT
+ - Wed, 22 Jan 2020 19:46:59 GMT
expires:
- '-1'
pragma:
@@ -84517,15 +85980,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx4?api-version=2019-04-01
+ 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: ''
@@ -84537,11 +86000,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:13:06 GMT
+ - 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/a13f8a59-3d09-4495-a4cf-03e83e15a86b?monitor=true&api-version=2019-04-01
+ - 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:
@@ -84551,7 +86014,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1199'
status:
code: 202
message: Accepted
@@ -84567,16 +86030,16 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/a13f8a59-3d09-4495-a4cf-03e83e15a86b?monitor=true&api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx4","name":"sfrpcliijc3wu2qrg3wwx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:05.5568960Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx4.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx4.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84585,7 +86048,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:23 GMT
+ - Wed, 22 Jan 2020 19:47:20 GMT
expires:
- '-1'
pragma:
@@ -84615,18 +86078,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx4?api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx4","name":"sfrpcliijc3wu2qrg3wwx4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:05.6037973Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:05.5568960Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx4.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx4.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx4.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84635,7 +86098,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:25 GMT
+ - Wed, 22 Jan 2020 19:47:21 GMT
expires:
- '-1'
pragma:
@@ -84667,15 +86130,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx4/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -84687,7 +86150,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:25 GMT
+ - Wed, 22 Jan 2020 19:47:22 GMT
expires:
- '-1'
pragma:
@@ -84723,15 +86186,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx5?api-version=2019-04-01
+ 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: ''
@@ -84743,11 +86206,11 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:13:28 GMT
+ - 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/52b7e4a1-0280-418d-9bd5-69534114a0ab?monitor=true&api-version=2019-04-01
+ - 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:
@@ -84773,16 +86236,16 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/52b7e4a1-0280-418d-9bd5-69534114a0ab?monitor=true&api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx5","name":"sfrpcliijc3wu2qrg3wwx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:27.6550438Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx5.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx5.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84791,7 +86254,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:46 GMT
+ - Wed, 22 Jan 2020 19:47:42 GMT
expires:
- '-1'
pragma:
@@ -84821,18 +86284,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx5?api-version=2019-04-01
+ 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/sfrpcliijc3wu2qrg3wwx5","name":"sfrpcliijc3wu2qrg3wwx5","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T01:13:27.7175338Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-12T01:13:27.6550438Z","primaryEndpoints":{"blob":"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/","queue":"https://sfrpcliijc3wu2qrg3wwx5.queue.core.windows.net/","table":"https://sfrpcliijc3wu2qrg3wwx5.table.core.windows.net/","file":"https://sfrpcliijc3wu2qrg3wwx5.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ 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
@@ -84841,7 +86304,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:47 GMT
+ - Wed, 22 Jan 2020 19:47:43 GMT
expires:
- '-1'
pragma:
@@ -84873,15 +86336,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sfrpcliijc3wu2qrg3wwx5/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -84893,7 +86356,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:47 GMT
+ - Wed, 22 Jan 2020 19:47:43 GMT
expires:
- '-1'
pragma:
@@ -84927,15 +86390,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/xjb4dma6imrnu3/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -84947,7 +86410,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:48 GMT
+ - Wed, 22 Jan 2020 19:47:45 GMT
expires:
- '-1'
pragma:
@@ -84981,15 +86444,15 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/sflogsxjb4dma6imrnu2/listKeys?api-version=2019-04-01
+ 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"}]}'
@@ -85001,7 +86464,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:13:49 GMT
+ - Wed, 22 Jan 2020 19:47:46 GMT
expires:
- '-1'
pragma:
@@ -85026,24 +86489,24 @@ interactions:
"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/a0223246ebeb4056a99771dc17f5fa0d",
+ "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://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd",
- "https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd", "https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd",
- "https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd", "https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd"]}},
+ "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-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool"}],
- "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]},
+ "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/5385900f-32fc-4bd6-964f-597c5eb51a3d",
+ "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": "A6D42B59D36EB86B6C2E0030165727B007B6DEC0",
+ "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",
@@ -85057,8 +86520,8 @@ interactions:
[{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter":
"Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod":
"PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}},
- "StorageAccount": "xjb4dma6imrnu3"}, "protectedSettings": {"storageAccountName":
- "xjb4dma6imrnu3", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint":
+ "StorageAccount": "rnq6es7bsjl5e3"}, "protectedSettings": {"storageAccountName":
+ "rnq6es7bsjl5e3", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint":
"https://core.windows.net/"}}}]}}, "overprovision": false}}'''
headers:
Accept:
@@ -85074,11 +86537,11 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ azure-mgmt-compute/10.0.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: PUT
@@ -85096,31 +86559,31 @@ interactions:
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/a0223246ebeb4056a99771dc17f5fa0d\",\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://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd\"\r\n
+ {\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-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n
+ \"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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n
+ {\"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\":\"xjb4dma6imrnu3\"}\r\n
+ \"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\":
@@ -85128,12 +86591,12 @@ interactions:
\ \"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\":
- \"4c753048-1018-48a1-84c8-10059537beb8\"\r\n }\r\n}"
+ \"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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ - 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:
@@ -85141,7 +86604,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:13:52 GMT
+ - Wed, 22 Jan 2020 19:47:48 GMT
expires:
- '-1'
pragma:
@@ -85174,17 +86637,121 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85193,7 +86760,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:14:04 GMT
+ - Wed, 22 Jan 2020 19:50:08 GMT
expires:
- '-1'
pragma:
@@ -85210,7 +86777,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29870
+ - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29938
status:
code: 200
message: OK
@@ -85226,17 +86793,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85245,7 +86812,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:15:41 GMT
+ - Wed, 22 Jan 2020 19:50:38 GMT
expires:
- '-1'
pragma:
@@ -85262,7 +86829,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29883
+ - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29934
status:
code: 200
message: OK
@@ -85278,17 +86845,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85297,7 +86864,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:16:11 GMT
+ - Wed, 22 Jan 2020 19:51:08 GMT
expires:
- '-1'
pragma:
@@ -85314,7 +86881,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29879
+ - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29931
status:
code: 200
message: OK
@@ -85330,17 +86897,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85349,7 +86916,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:16:41 GMT
+ - Wed, 22 Jan 2020 19:51:39 GMT
expires:
- '-1'
pragma:
@@ -85366,7 +86933,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29875
+ - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29928
status:
code: 200
message: OK
@@ -85382,17 +86949,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85401,7 +86968,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:17:12 GMT
+ - Wed, 22 Jan 2020 19:52:09 GMT
expires:
- '-1'
pragma:
@@ -85418,7 +86985,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29872
+ - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29924
status:
code: 200
message: OK
@@ -85434,17 +87001,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85453,7 +87020,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:17:43 GMT
+ - Wed, 22 Jan 2020 19:52:39 GMT
expires:
- '-1'
pragma:
@@ -85470,7 +87037,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29869
+ - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29920
status:
code: 200
message: OK
@@ -85486,17 +87053,17 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85505,7 +87072,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:18:13 GMT
+ - Wed, 22 Jan 2020 19:53:11 GMT
expires:
- '-1'
pragma:
@@ -85522,7 +87089,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29865
+ - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29918
status:
code: 200
message: OK
@@ -85538,18 +87105,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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/6d8da4ee-c64d-48dd-87d1-20c359908fcf?api-version=2019-07-01
+ 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\": \"2019-12-12T01:13:51.6824396+00:00\",\r\n \"endTime\":
- \"2019-12-12T01:18:42.9491683+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"6d8da4ee-c64d-48dd-87d1-20c359908fcf\"\r\n}"
+ 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
@@ -85558,7 +87125,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:18:44 GMT
+ - Wed, 22 Jan 2020 19:53:41 GMT
expires:
- '-1'
pragma:
@@ -85575,7 +87142,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29861
+ - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29914
status:
code: 200
message: OK
@@ -85591,11 +87158,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.77
+ 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:
@@ -85611,31 +87178,31 @@ interactions:
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/a0223246ebeb4056a99771dc17f5fa0d\",\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://sfrpcliijc3wu2qrg3wwx1.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx2.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx3.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx4.blob.core.windows.net/vhd\",\r\n
- \ \"https://sfrpcliijc3wu2qrg3wwx5.blob.core.windows.net/vhd\"\r\n
+ {\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-ijc3wu2qr1/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-ijc3wu2qr1/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n
+ \"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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Gold\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\"x509StoreName\":\"My\"}}\r\n
+ {\"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\":\"xjb4dma6imrnu3\"}\r\n
+ \"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\":
@@ -85643,7 +87210,7 @@ interactions:
\ \"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\":
- \"4c753048-1018-48a1-84c8-10059537beb8\"\r\n }\r\n}"
+ \"406c0c13-d7d1-4c98-b7d6-cba867dc197a\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -85652,7 +87219,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 12 Dec 2019 01:18:44 GMT
+ - Wed, 22 Jan 2020 19:53:41 GMT
expires:
- '-1'
pragma:
@@ -85669,7 +87236,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2585
+ - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2583
status:
code: 200
message: OK
@@ -85696,26 +87263,26 @@ interactions:
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-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/\\\"637117087295410024\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637153179368236820\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\":
- \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n
+ \"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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -85729,21 +87296,21 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\":
- [\r\n {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n
+ \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
+ \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
+ \ {\r\n \"codeVersion\": \"6.5.676.9590\",\r\n \"supportExpiryUtc\":
\"2020-05-01T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n
\ {\r\n \"codeVersion\": \"7.0.457.9590\",\r\n \"supportExpiryUtc\":
\"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ],\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n
- \ ]\r\n }\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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ - 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:
@@ -85751,11 +87318,11 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:18:45 GMT
+ - 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ - 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:
@@ -85781,18 +87348,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -85802,7 +87369,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:19:47 GMT
+ - Wed, 22 Jan 2020 19:54:47 GMT
expires:
- '-1'
pragma:
@@ -85833,18 +87400,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -85854,7 +87421,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:20:18 GMT
+ - Wed, 22 Jan 2020 19:55:17 GMT
expires:
- '-1'
pragma:
@@ -85885,18 +87452,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -85906,7 +87473,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:20:49 GMT
+ - Wed, 22 Jan 2020 19:55:47 GMT
expires:
- '-1'
pragma:
@@ -85937,18 +87504,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -85958,7 +87525,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:21:20 GMT
+ - Wed, 22 Jan 2020 19:56:18 GMT
expires:
- '-1'
pragma:
@@ -85989,18 +87556,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86010,7 +87577,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:21:52 GMT
+ - Wed, 22 Jan 2020 19:56:48 GMT
expires:
- '-1'
pragma:
@@ -86041,18 +87608,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86062,7 +87629,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:22:23 GMT
+ - Wed, 22 Jan 2020 19:57:19 GMT
expires:
- '-1'
pragma:
@@ -86093,18 +87660,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86114,7 +87681,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:22:54 GMT
+ - Wed, 22 Jan 2020 19:57:50 GMT
expires:
- '-1'
pragma:
@@ -86145,18 +87712,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86166,7 +87733,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:23:25 GMT
+ - Wed, 22 Jan 2020 19:58:20 GMT
expires:
- '-1'
pragma:
@@ -86197,18 +87764,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86218,7 +87785,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:23:56 GMT
+ - Wed, 22 Jan 2020 19:58:51 GMT
expires:
- '-1'
pragma:
@@ -86249,18 +87816,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86270,7 +87837,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:24:27 GMT
+ - Wed, 22 Jan 2020 19:59:21 GMT
expires:
- '-1'
pragma:
@@ -86301,18 +87868,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86322,7 +87889,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:24:59 GMT
+ - Wed, 22 Jan 2020 19:59:51 GMT
expires:
- '-1'
pragma:
@@ -86353,18 +87920,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86374,7 +87941,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:25:30 GMT
+ - Wed, 22 Jan 2020 20:00:22 GMT
expires:
- '-1'
pragma:
@@ -86405,18 +87972,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86426,7 +87993,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:26:01 GMT
+ - Wed, 22 Jan 2020 20:00:52 GMT
expires:
- '-1'
pragma:
@@ -86457,18 +88024,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86478,7 +88045,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:26:32 GMT
+ - Wed, 22 Jan 2020 20:01:22 GMT
expires:
- '-1'
pragma:
@@ -86509,18 +88076,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86530,7 +88097,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:27:04 GMT
+ - Wed, 22 Jan 2020 20:01:53 GMT
expires:
- '-1'
pragma:
@@ -86561,18 +88128,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86582,7 +88149,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:27:34 GMT
+ - Wed, 22 Jan 2020 20:02:23 GMT
expires:
- '-1'
pragma:
@@ -86613,18 +88180,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86634,7 +88201,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:28:05 GMT
+ - Wed, 22 Jan 2020 20:02:53 GMT
expires:
- '-1'
pragma:
@@ -86665,18 +88232,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86686,7 +88253,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:28:37 GMT
+ - Wed, 22 Jan 2020 20:03:25 GMT
expires:
- '-1'
pragma:
@@ -86717,18 +88284,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86738,7 +88305,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:29:08 GMT
+ - Wed, 22 Jan 2020 20:03:55 GMT
expires:
- '-1'
pragma:
@@ -86769,18 +88336,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86790,7 +88357,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:29:39 GMT
+ - Wed, 22 Jan 2020 20:04:25 GMT
expires:
- '-1'
pragma:
@@ -86821,18 +88388,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86842,7 +88409,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:30:10 GMT
+ - Wed, 22 Jan 2020 20:04:56 GMT
expires:
- '-1'
pragma:
@@ -86873,18 +88440,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86894,7 +88461,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:30:42 GMT
+ - Wed, 22 Jan 2020 20:05:26 GMT
expires:
- '-1'
pragma:
@@ -86925,18 +88492,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86946,7 +88513,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:31:13 GMT
+ - Wed, 22 Jan 2020 20:05:56 GMT
expires:
- '-1'
pragma:
@@ -86977,18 +88544,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -86998,7 +88565,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:31:44 GMT
+ - Wed, 22 Jan 2020 20:06:27 GMT
expires:
- '-1'
pragma:
@@ -87029,18 +88596,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -87050,7 +88617,59 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:32:15 GMT
+ - 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:
@@ -87081,18 +88700,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -87102,7 +88721,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:32:46 GMT
+ - Wed, 22 Jan 2020 20:07:58 GMT
expires:
- '-1'
pragma:
@@ -87133,18 +88752,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -87154,7 +88773,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:33:17 GMT
+ - Wed, 22 Jan 2020 20:08:29 GMT
expires:
- '-1'
pragma:
@@ -87185,18 +88804,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\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\\\":\\\"2019-12-12T01:20:11.5377178Z\\\"}\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ 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:
@@ -87206,7 +88825,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:33:48 GMT
+ - Wed, 22 Jan 2020 20:08:59 GMT
expires:
- '-1'
pragma:
@@ -87237,18 +88856,18 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814?api-version=2017-07-01-preview
+ 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/17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n
- \ \"name\": \"17ff3a28-01a4-4a61-b127-d41cbd3b8814\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2019-12-12T01:18:46.6451923Z\",\r\n \"endTime\": \"2019-12-12T01:34:16.0939636Z\",\r\n
+ 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:
@@ -87258,7 +88877,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:34:20 GMT
+ - Wed, 22 Jan 2020 20:09:29 GMT
expires:
- '-1'
pragma:
@@ -87289,23 +88908,23 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ 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=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-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/\\\"637117087295410024\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637153179368236820\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n
+ \"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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -87325,17 +88944,17 @@ interactions:
{\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\":
- \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\":
+ \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\":
\"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\":
- \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\":
- \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\":
- \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\":
- \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n \"queueEndpoint\":
+ \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n \"tableEndpoint\":
+ \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
\"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n
\ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\":
\"7.0.457.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
- \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"addonFeatures\":
- [\r\n \"DnsService\"\r\n ]\r\n }\r\n}"
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -87344,7 +88963,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:34:21 GMT
+ - Wed, 22 Jan 2020 20:09:29 GMT
expires:
- '-1'
pragma:
@@ -87375,25 +88994,25 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --node-type --capacity --vm-user-name --vm-password --durability-level
+ - -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.2.0 Azure-SDK-For-Python AZURECLI/2.0.77
+ azure-mgmt-servicefabric/0.4.0 Azure-SDK-For-Python AZURECLI/2.0.78
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2017-07-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-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/\\\"637117087295410024\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637153179368236820\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n \"clusterCodeVersion\": \"6.5.676.9590\",\r\n
+ \"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/5385900f-32fc-4bd6-964f-597c5eb51a3d\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"A6D42B59D36EB86B6C2E0030165727B007B6DEC0\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/1ba16777-e2cb-4ff6-816a-6b1e0daa89a5\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"2851A9EC72FA639560334991D06E2FC147635A0B\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -87413,17 +89032,17 @@ interactions:
{\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\":
- \"sflogsxjb4dma6imrnu2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\":
+ \"sflogsrnq6es7bsjl5e2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\":
\"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\":
- \"https://sflogsxjb4dma6imrnu2.blob.core.windows.net/\",\r\n \"queueEndpoint\":
- \"https://sflogsxjb4dma6imrnu2.queue.core.windows.net/\",\r\n \"tableEndpoint\":
- \"https://sflogsxjb4dma6imrnu2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\":
- \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"https://sflogsrnq6es7bsjl5e2.blob.core.windows.net/\",\r\n \"queueEndpoint\":
+ \"https://sflogsrnq6es7bsjl5e2.queue.core.windows.net/\",\r\n \"tableEndpoint\":
+ \"https://sflogsrnq6es7bsjl5e2.table.core.windows.net/\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
\"6.5.676.9590\",\r\n \"supportExpiryUtc\": \"2020-05-01T00:00:00\",\r\n
\ \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\":
\"7.0.457.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
- \ \"environment\": \"Windows\"\r\n }\r\n ],\r\n \"addonFeatures\":
- [\r\n \"DnsService\"\r\n ]\r\n }\r\n}"
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
@@ -87432,7 +89051,7 @@ interactions:
content-type:
- application/json
date:
- - Thu, 12 Dec 2019 01:34:22 GMT
+ - Wed, 22 Jan 2020 20:09:31 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_application.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_application.py
new file mode 100644
index 00000000000..8b2235ba7b2
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_application.py
@@ -0,0 +1,113 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+import unittest
+from test_util import _create_cluster
+from azure.cli.core.util import CLIError
+from azure.cli.testsdk import ScenarioTest, LiveScenarioTest, ResourceGroupPreparer
+
+
+class ServiceFabricApplicationTests(ScenarioTest):
+ def _app_type_test(self):
+ self.cmd('az sf application-type list -g {rg} -c {cluster_name}',
+ checks=[self.check('length(value)', 0)])
+ app_type = self.cmd('az sf application-type create -g {rg} -c {cluster_name} --application-type-name {app_type_name}',
+ checks=[self.check('provisioningState', 'Succeeded')]).get_output_in_json()
+ self.cmd('az sf application-type show -g {rg} -c {cluster_name} --application-type-name {app_type_name}',
+ checks=[self.check('id', app_type['id'])])
+ self.cmd('az sf application-type delete -g {rg} -c {cluster_name} --application-type-name {app_type_name}')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf application-type show -g {rg} -c {cluster_name} --application-type-name {app_type_name}')
+
+ def _app_type_version_test(self):
+ self.cmd('az sf application-type version list -g {rg} -c {cluster_name} --application-type-name {app_type_name}',
+ checks=[self.check('length(value)', 0)])
+ app_type_version = self.cmd('az sf application-type version create -g {rg} -c {cluster_name} '
+ '--application-type-name {app_type_name} --version {v1} --package-url {app_package_v1}',
+ checks=[self.check('provisioningState', 'Succeeded')]).get_output_in_json()
+ self.cmd('az sf application-type version show -g {rg} -c {cluster_name} --application-type-name {app_type_name} --version {v1}',
+ checks=[self.check('id', app_type_version['id'])])
+ self.cmd('az sf application-type version delete -g {rg} -c {cluster_name} --application-type-name {app_type_name} --version {v1}')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf application-type version show -g {rg} -c {cluster_name} --application-type-name {app_type_name} --version {v1}')
+
+ def _app_service_test(self):
+ self.cmd('az sf application list -g {rg} -c {cluster_name}',
+ checks=[self.check('length(value)', 0)])
+ app = self.cmd('az sf application create -g {rg} -c {cluster_name} --application-name {app_name} '
+ '--application-type-name {app_type_name} --application-type-version {v1} --package-url {app_package_v1} '
+ '--application-parameters Mode=binary',
+ checks=[self.check('provisioningState', 'Succeeded')]).get_output_in_json()
+ self.cmd('az sf application show -g {rg} -c {cluster_name} --application-name {app_name}',
+ checks=[self.check('id', app['id'])])
+
+ service = self.cmd('az sf service create -g {rg} -c {cluster_name} --application-name {app_name} --state stateless --instance-count -1 '
+ '--service-name "{app_name}~testService" --service-type {service_type} --partition-scheme singleton',
+ checks=[self.check('provisioningState', 'Succeeded')]).get_output_in_json()
+
+ self.cmd('az sf service show -g {rg} -c {cluster_name} --application-name {app_name} --service-name "{app_name}~testService"',
+ checks=[self.check('id', service['id'])])
+
+ self.cmd('az sf application-type version create -g {rg} -c {cluster_name} '
+ '--application-type-name {app_type_name} --version {v2} --package-url {app_package_v2}',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf application update -g {rg} -c {cluster_name} --application-name {app_name} --application-type-version {v2} '
+ '--application-parameters Mode=decimal --health-check-stable-duration 0 --health-check-wait-duration 0 --health-check-retry-timeout 0 '
+ '--upgrade-domain-timeout 5000 --upgrade-timeout 7000 --failure-action Rollback --upgrade-replica-set-check-timeout 300 --force-restart',
+ checks=[self.check('provisioningState', 'Succeeded'),
+ self.check('typeVersion', '{v2}'),
+ self.check('parameters.Mode', 'decimal'),
+ self.check('upgradePolicy.forceRestart', True),
+ self.check('upgradePolicy.upgradeReplicaSetCheckTimeout', '00:05:00'),
+ self.check('upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckRetryTimeout', '00:00:00'),
+ self.check('upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckWaitDuration', '00:00:00'),
+ self.check('upgradePolicy.rollingUpgradeMonitoringPolicy.healthCheckStableDuration', '00:00:00'),
+ self.check('upgradePolicy.rollingUpgradeMonitoringPolicy.upgradeTimeout', '01:56:40'),
+ self.check('upgradePolicy.rollingUpgradeMonitoringPolicy.upgradeDomainTimeout', '01:23:20'),
+ self.check('upgradePolicy.rollingUpgradeMonitoringPolicy.failureAction', 'Rollback')])
+
+ self.cmd('az sf application update -g {rg} -c {cluster_name} --application-name {app_name} --minimum-nodes 1 --maximum-nodes 3',
+ checks=[self.check('provisioningState', 'Succeeded')])
+ self.cmd('az sf application show -g {rg} -c {cluster_name} --application-name {app_name}',
+ checks=[self.check('provisioningState', 'Succeeded'),
+ self.check('minimumNodes', 1),
+ self.check('maximumNodes', 3)])
+
+ self.cmd('az sf application delete -g {rg} -c {cluster_name} --application-name {app_name}')
+ self.cmd('az sf application-type delete -g {rg} -c {cluster_name} --application-type-name {app_type_name}')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf application show -g {rg} -c {cluster_name} --application-name {app_name}')
+
+ @ResourceGroupPreparer()
+ def test_application(self):
+ self.kwargs.update({
+ 'kv_name': self.create_random_name('sfrp-cli-kv-', 24),
+ 'loc': 'westus',
+ 'cert_name': self.create_random_name('sfrp-cli-', 24),
+ 'cluster_name': self.create_random_name('sfrp-cli-', 24),
+ 'vm_password': self.create_random_name('Pass@', 9),
+ 'app_type_name': 'CalcServiceApp',
+ 'v1': '1.0',
+ 'app_package_v1': 'https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.0.sfpkg',
+ 'v2': '1.1',
+ 'app_package_v2': 'https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.1.sfpkg',
+ 'app_name': self.create_random_name('testApp', 11),
+ 'service_type': 'CalcServiceType'
+ })
+
+ _create_cluster(self, self.kwargs)
+ self._app_type_test()
+ self._app_type_version_test()
+ self._app_service_test()
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py
new file mode 100644
index 00000000000..e41f8d025de
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py
@@ -0,0 +1,38 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+import unittest
+import json
+import logging
+import os
+import time
+from test_util import _create_cluster, _wait_for_cluster_state_ready
+from azure.cli.core.util import CLIError
+from azure.cli.testsdk import ScenarioTest, LiveScenarioTest, ResourceGroupPreparer
+
+
+class ServiceFabricClusterTests(ScenarioTest):
+ @ResourceGroupPreparer()
+ def test_node_type(self):
+ self.kwargs.update({
+ 'kv_name': self.create_random_name('sfrp-cli-kv-', 24),
+ 'loc': 'westus',
+ 'cert_name': self.create_random_name('sfrp-cli-', 24),
+ 'cluster_name': self.create_random_name('sfrp-cli-', 24),
+ 'vm_password': self.create_random_name('Pass@', 9),
+ })
+ _create_cluster(self, self.kwargs)
+ _wait_for_cluster_state_ready(self, self.kwargs)
+
+ self.cmd('az sf cluster node-type add -g {rg} -c {cluster_name} --node-type nt2 --capacity 5 --vm-user-name admintest '
+ '--vm-password {vm_password} --durability-level Gold --vm-sku Standard_D15_v2',
+ checks=[self.check('provisioningState', 'Succeeded'),
+ self.check('length(nodeTypes)', 2),
+ self.check('nodeTypes[1].name', 'nt2'),
+ self.check('nodeTypes[1].vmInstanceCount', 5),
+ self.check('nodeTypes[1].durabilityLevel', 'Gold')])
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_commands.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py
similarity index 58%
rename from src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_commands.py
rename to src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py
index 8eb0813b398..e22b5b15d08 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py
@@ -2,13 +2,11 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-import unittest
import json
import logging
import os
import time
from azure.cli.core.util import CLIError
-from azure.cli.testsdk import ScenarioTest, LiveScenarioTest, ResourceGroupPreparer
TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..'))
@@ -34,11 +32,10 @@ def _create_cluster(test, kwargs):
logger.error(cert_secret_id)
kwargs.update({'cert_secret_id': cert_secret_id})
- test.cmd('az sf cluster create -g {rg} -n {cluster_name} -l {loc} --secret-identifier {cert_secret_id} --vm-password "{vm_password}" --cluster-size 3')
+ test.cmd('az sf cluster create -g {rg} -c {cluster_name} -l {loc} --secret-identifier {cert_secret_id} --vm-password "{vm_password}" --cluster-size 3')
timeout = time.time() + 900
while True:
- cluster = test.cmd('az sf cluster show -g {rg} -n {cluster_name}').get_output_in_json()
-
+ cluster = test.cmd('az sf cluster show -g {rg} -c {cluster_name}').get_output_in_json()
if cluster['provisioningState']:
if cluster['provisioningState'] == 'Succeeded':
return
@@ -54,42 +51,16 @@ def _create_cluster(test, kwargs):
def _wait_for_cluster_state_ready(test, kwargs):
timeout = time.time() + 900
while True:
- cluster = test.cmd('az sf cluster show -g {rg} -n {cluster_name}').get_output_in_json()
+ cluster = test.cmd('az sf cluster show -g {rg} -c {cluster_name}').get_output_in_json()
if cluster['clusterState']:
if cluster['clusterState'] == 'Ready':
return
if time.time() > timeout:
- raise CLIError("Cluster deployment timed out. cluster state is not 'Ready'. State: {}".format(cluster['ClusterState']))
+ state = "unknown"
+ if cluster['clusterState']:
+ state = cluster['clusterState']
+ raise CLIError("Cluster deployment timed out. cluster state is not 'Ready'. State: {}".format(state))
if not test.in_recording:
time.sleep(20)
-
-
-class ServiceFabricApplicationTests(ScenarioTest):
- @ResourceGroupPreparer()
- def test_node_type(self):
- self.kwargs.update({
- # 'rg': 'alsantamclirg2',
- 'kv_name': self.create_random_name('sfrp-cli-kv-', 24),
- 'loc': 'westus',
- 'cert_name': self.create_random_name('sfrp-cli-', 24),
- 'cluster_name': self.create_random_name('sfrp-cli-', 24),
- # 'cluster_name': 'alsantamcli2',
- 'vm_password': self.create_random_name('Pass@', 9),
- })
-
- _create_cluster(self, self.kwargs)
- _wait_for_cluster_state_ready(self, self.kwargs)
-
- self.cmd('az sf cluster node-type add -g {rg} -n {cluster_name} --node-type nt2 --capacity 5 --vm-user-name admintest '
- '--vm-password {vm_password} --durability-level Gold --vm-sku Standard_D15_v2',
- checks=[self.check('provisioningState', 'Succeeded'),
- self.check('length(nodeTypes)', 2),
- self.check('nodeTypes[1].name', 'nt2'),
- self.check('nodeTypes[1].vmInstanceCount', 5),
- self.check('nodeTypes[1].durabilityLevel', 'Gold')])
-
-
-if __name__ == '__main__':
- unittest.main()
diff --git a/src/azure-cli/requirements.py2.Darwin.txt b/src/azure-cli/requirements.py2.Darwin.txt
index 6597dc138eb..3f0bf220e8e 100644
--- a/src/azure-cli/requirements.py2.Darwin.txt
+++ b/src/azure-cli/requirements.py2.Darwin.txt
@@ -71,7 +71,7 @@ azure-mgmt-resource==6.0.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.1.0
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.2.0
+azure-mgmt-servicefabric==0.4.0
azure-mgmt-signalr==0.3.0
azure-mgmt-sql==0.15.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/requirements.py2.Linux.txt b/src/azure-cli/requirements.py2.Linux.txt
index 6597dc138eb..3f0bf220e8e 100644
--- a/src/azure-cli/requirements.py2.Linux.txt
+++ b/src/azure-cli/requirements.py2.Linux.txt
@@ -71,7 +71,7 @@ azure-mgmt-resource==6.0.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.1.0
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.2.0
+azure-mgmt-servicefabric==0.4.0
azure-mgmt-signalr==0.3.0
azure-mgmt-sql==0.15.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/requirements.py2.windows.txt b/src/azure-cli/requirements.py2.windows.txt
index f6f4003cc7f..bfcb0ea54b3 100644
--- a/src/azure-cli/requirements.py2.windows.txt
+++ b/src/azure-cli/requirements.py2.windows.txt
@@ -70,7 +70,7 @@ azure-mgmt-resource==6.0.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.1.0
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.2.0
+azure-mgmt-servicefabric==0.4.0
azure-mgmt-signalr==0.3.0
azure-mgmt-sql==0.15.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt
index 9c822e80bc4..ffba20bf0aa 100644
--- a/src/azure-cli/requirements.py3.Darwin.txt
+++ b/src/azure-cli/requirements.py3.Darwin.txt
@@ -71,7 +71,7 @@ azure-mgmt-resource==6.0.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.1.0
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.2.0
+azure-mgmt-servicefabric==0.4.0
azure-mgmt-signalr==0.3.0
azure-mgmt-sql==0.15.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt
index 9c822e80bc4..ffba20bf0aa 100644
--- a/src/azure-cli/requirements.py3.Linux.txt
+++ b/src/azure-cli/requirements.py3.Linux.txt
@@ -71,7 +71,7 @@ azure-mgmt-resource==6.0.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.1.0
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.2.0
+azure-mgmt-servicefabric==0.4.0
azure-mgmt-signalr==0.3.0
azure-mgmt-sql==0.15.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt
index 65e2b959419..1507db8e46e 100644
--- a/src/azure-cli/requirements.py3.windows.txt
+++ b/src/azure-cli/requirements.py3.windows.txt
@@ -70,7 +70,7 @@ azure-mgmt-resource==6.0.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.1.0
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.2.0
+azure-mgmt-servicefabric==0.4.0
azure-mgmt-signalr==0.3.0
azure-mgmt-sql==0.15.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py
index 53e767acb3d..5e17eb2ece1 100644
--- a/src/azure-cli/setup.py
+++ b/src/azure-cli/setup.py
@@ -118,7 +118,7 @@
'azure-mgmt-search~=2.0',
'azure-mgmt-security~=0.1.0',
'azure-mgmt-servicebus~=0.6.0',
- 'azure-mgmt-servicefabric~=0.2.0',
+ 'azure-mgmt-servicefabric~=0.4.0',
'azure-mgmt-signalr~=0.3.0',
'azure-mgmt-sql~=0.15.0',
'azure-mgmt-sqlvirtualmachine~=0.5.0',
@@ -182,9 +182,11 @@
'azure.cli.command_modules.monitor.operations': ['autoscale-parameters-template.json'],
'azure.cli.command_modules.servicefabric': [
'template/windows/template.json',
- 'template/linux/template.json',
'template/windows/parameter.json',
+ 'template/linux/template.json',
'template/linux/parameter.json',
+ 'template/service/template.json',
+ 'template/service/parameter.json'
],
},
cmdclass=cmdclass