diff --git a/azure-cli.pyproj b/azure-cli.pyproj
index cf4117aca47..cae065a1daf 100644
--- a/azure-cli.pyproj
+++ b/azure-cli.pyproj
@@ -651,13 +651,17 @@
+
+
+
+
diff --git a/azure-cli2017.pyproj b/azure-cli2017.pyproj
index 1999360dfab..8144e45d8a3 100644
--- a/azure-cli2017.pyproj
+++ b/azure-cli2017.pyproj
@@ -839,13 +839,17 @@
+
+
+
+
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 6c34937ff96..b9bad0e5c5e 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
@@ -34,6 +34,14 @@ def servicefabric_service_client_factory(cli_ctx, kwargs):
return servicefabric_client_factory(cli_ctx, **kwargs).services
+def servicefabric_managed_clusters_client_factory(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs).managed_clusters
+
+
+def servicefabric_node_types_client_factory(cli_ctx, kwargs):
+ return servicefabric_client_factory(cli_ctx, **kwargs).node_types
+
+
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 6f5d787b64a..b797436f360 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_help.py
@@ -410,3 +410,213 @@
text: >
az sf cluster upgrade-type set -g group-name -c cluster1 --upgrade-mode Automatic
"""
+
+helps['sf managed-cluster'] = """
+type: group
+short-summary: Manage an Azure Service Fabric managed cluster.
+"""
+
+helps['sf managed-cluster show'] = """
+type: command
+short-summary: Show the properties of an Azure Service Fabric managed cluster.
+examples:
+ - name: Get cluster.
+ text: >
+ az sf managed-cluster show -g testRG -c testCluster
+"""
+
+helps['sf managed-cluster list'] = """
+type: command
+short-summary: List managed clusters.
+examples:
+ - name: List clusters by resource group.
+ text: >
+ az sf managed-cluster list -g testRG
+ - name: List clusters by subscription.
+ text: >
+ az sf managed-cluster list
+"""
+
+helps['sf managed-cluster create'] = """
+type: command
+short-summary: Delete a managed cluster.
+examples:
+ - name: Create cluster with standard sku and client cert by thumbprint.
+ text: >
+ az sf managed-cluster create -g testRG -c testCluster -l eastus2 --cert-thumbprint XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX --cert-is-admin --admin-password PassTest123@ --sku Standard
+ - name: Create cluster with standard sku and client cert by common name.
+ text: >
+ az sf managed-cluster create -g testRG -c testCluster -l eastus2 --cert-common-name Contoso.com --cert-issuer-thumbprint XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX --cert-is-admin --admin-password PassTest123@ --sku Standard
+"""
+
+helps['sf managed-cluster update'] = """
+type: command
+short-summary: Update a managed cluster.
+examples:
+ - name: Update cluster client port and dns name.
+ text: >
+ az sf managed-cluster update -g testRG -c testCluster --client-port 50000 --dns-name testnewdns
+"""
+
+helps['sf managed-cluster delete'] = """
+type: command
+short-summary: Delete a managed cluster.
+examples:
+ - name: Delete cluster.
+ text: >
+ az sf managed-cluster delete -g testRG -c testCluster
+"""
+
+helps['sf managed-cluster client-certificate'] = """
+type: group
+short-summary: Manage client certificates of a manged cluster.
+"""
+
+helps['sf managed-cluster client-certificate add'] = """
+type: command
+short-summary: Add a new client certificate to the managed cluster.
+examples:
+ - name: Add admin client certificate by thumbprint.
+ text: >
+ az sf managed-cluster client-certificate add -g testRG -c testCluster --thumbprint XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX --is-admin
+ - name: Add non admin client certificate by common name.
+ text: >
+ az sf managed-cluster client-certificate add -g testRG -c testCluster --common-name Contoso.com --issuer-thumbprint XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+"""
+
+helps['sf managed-cluster client-certificate delete'] = """
+type: command
+short-summary: Delete a client certificate from the managed cluster.
+examples:
+ - name: Delete client certificate by thumbprint.
+ text: >
+ az sf managed-cluster client-certificate delete -g testRG -c testCluster --thumbprint XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
+ - name: Delete client certificate by common name.
+ text: >
+ az sf managed-cluster client-certificate delete -g testRG -c testCluster --common-name Contoso.com
+"""
+
+helps['sf managed-node-type'] = """
+type: group
+short-summary: Manage a node type of an Azure Service Fabric managed cluster.
+"""
+
+helps['sf managed-node-type show'] = """
+type: command
+short-summary: Show the properties of a node type.
+examples:
+ - name: Get node type.
+ text: >
+ az sf managed-node-type show -g testRG -c testCluster -n pnt
+"""
+
+helps['sf managed-node-type list'] = """
+type: command
+short-summary: List node types of a managed cluster.
+examples:
+ - name: List node types by cluster.
+ text: >
+ az sf managed-node-type list -g testRG -c testCluster
+"""
+
+helps['sf managed-node-type create'] = """
+type: command
+short-summary: Delete a managed cluster.
+examples:
+ - name: Create primary node type with 5 nodes.
+ text: >
+ az sf managed-node-type create -g testRG -c testCluster -n pnt --instance-count 5 --primary
+ - name: Create non primary node type with placement properities, capacities and ports.
+ text: >
+ az sf managed-node-type create -g testRG -c testCluster -n snt --instance-count 5 --placement-property NodeColor=Green SomeProperty=5 --capacity ClientConnections=65536 --app-start-port 20575 --app-end-port 20605 --ephemeral-start-port 20606 --ephemeral-end-port 20861
+"""
+
+helps['sf managed-node-type update'] = """
+type: command
+short-summary: Update a managed cluster.
+examples:
+ - name: Update the instance count of the node type.
+ text: >
+ az sf managed-node-type update -g testRG -c testCluster -n snt --instance-count 7
+ - name: Update placement properties of the node type. This will overwrite older placement properties if any.
+ text: >
+ az sf managed-node-type update -g testRG -c testCluster -n snt --placement-property NodeColor=Red SomeProperty=6
+"""
+
+helps['sf managed-node-type delete'] = """
+type: command
+short-summary: Delete node type from a cluster.
+examples:
+ - name: Delete cluster.
+ text: >
+ az sf managed-node-type delete -g testRG -c testCluster -n snt
+"""
+
+helps['sf managed-node-type node'] = """
+type: group
+short-summary: Perform operations on nodes of a node type on managed clusters.
+"""
+
+helps['sf managed-node-type node restart'] = """
+type: command
+short-summary: Restart nodes of a node type.
+examples:
+ - name: Restart 2 nodes.
+ text: >
+ az sf managed-node-type node restart -g testRG -c testCluster -n snt --node-name snt_0 snt_1
+"""
+
+helps['sf managed-node-type node reimage'] = """
+type: command
+short-summary: Reimage nodes of a node type.
+examples:
+ - name: Reimage 2 nodes.
+ text: >
+ az sf managed-node-type node reimage -g testRG -c testCluster -n snt --node-name snt_0 snt_1
+"""
+
+helps['sf managed-node-type node delete'] = """
+type: command
+short-summary: Delete nodes of a node type.
+examples:
+ - name: Delete 2 nodes.
+ text: >
+ az sf managed-node-type node delete -g testRG -c testCluster -n snt --node-name snt_0 snt_1
+"""
+
+helps['sf managed-node-type vm-extension'] = """
+type: group
+short-summary: Managed vm extension on a node type on managed clusters.
+"""
+
+helps['sf managed-node-type vm-extension add'] = """
+type: command
+short-summary: Add an extension to the node type.
+examples:
+ - name: Add bg extension.
+ text: >
+ az sf managed-node-type vm-extension add -g testRG -c testCluster -n snt --extension-name csetest --publisher Microsoft.Compute --extension-type BGInfo --type-handler-version 2.1 --auto-upgrade-minor-version
+"""
+
+helps['sf managed-node-type vm-extension delete'] = """
+type: command
+short-summary: Delete an extension to the node type.
+examples:
+ - name: Delete extension by name.
+ text: >
+ az sf managed-node-type vm-extension delete -g testRG -c testCluster -n snt --extension-name csetest
+"""
+
+helps['sf managed-node-type vm-secret'] = """
+type: group
+short-summary: Managed vm secrets on a node type on managed clusters.
+"""
+
+helps['sf managed-node-type vm-secret add'] = """
+type: command
+short-summary: Add a secret to the node type.
+examples:
+ - name: Add certificate to the node type as a secret.
+ text: >
+ az sf managed-node-type vm-secret add -g testRG -c testCluster -n snt --source-vault-id /subscriptions/XXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resourceGroups/testRG/providers/Microsoft.KeyVault/vaults/testkv --certificate-url https://testskv.vault.azure.net:443/secrets/TestCert/xxxxxxxxxxxxxxxxxxxxxxxx --certificate-store my
+"""
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 22d04441ff6..0497b4e43ce 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_params.py
@@ -7,9 +7,19 @@
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, get_three_state_flag
+from azure.cli.core.commands.parameters import (
+ resource_group_name_type,
+ get_enum_type,
+ get_three_state_flag,
+ tags_type
+)
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 azure.cli.command_modules.servicefabric._validators import (
+ validate_create_service,
+ validate_update_application,
+ validate_create_application,
+ validate_create_managed_cluster
+)
from knack.arguments import CLIArgumentType
@@ -17,7 +27,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
# PARAMETER REGISTRATION
application_parameters = CLIArgumentType(
options_list=['--parameters', '--application-parameters'],
- action=addAppParamsAction,
+ 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')
@@ -49,9 +59,9 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
c.argument('parameter_file', help='The path to the template parameter file.')
c.argument('template_file', help='The path to the template file.')
c.argument('vm_password', help='The password of the Vm')
- c.argument('certificate_output_folder', help='The folder of the new certificate file to be created.')
+ c.argument('certificate_output_folder', options_list=['--certificate-output-folder', '--cert-out-folder'], help='The folder of the new certificate file to be created.')
c.argument('certificate_password', help='The password of the certificate file.')
- c.argument('certificate_subject_name', help='The subject name of the certificate to be created.')
+ c.argument('certificate_subject_name', options_list=['--certificate-subject-name', '--cert-subject-name'], help='The subject name of the certificate to be created.')
c.argument('vault_resource_group_name', options_list=['--vault-resource-group'], help='Key vault resource group name, if not given it will be cluster resource group name')
c.argument('vault_name', help='Azure key vault name, it not given it will be the cluster resource group name')
c.argument('cluster_size', options_list=['--cluster-size', '-s'], help='The number of nodes in the cluster. Default are 5 nodes')
@@ -77,18 +87,18 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
with self.argument_context('sf client certificate') as c:
c.argument('certificate_common_name', help='client certificate common name.')
- c.argument('admin_client_thumbprints', nargs='+', help='Space-separated list of client certificate thumbprint that only has admin permission, ')
- c.argument('certificate_issuer_thumbprint', help='client certificate issuer thumbprint.')
+ c.argument('admin_client_thumbprints', options_list=['--admin-client-thumbprints', '--admin-client-tps'], nargs='+', help='Space-separated list of client certificate thumbprint that only has admin permission, ')
+ c.argument('certificate_issuer_thumbprint', options_list=['--certificate-issuer-thumbprint', '--cert-issuer-tp'], help='client certificate issuer thumbprint.')
with self.argument_context('sf cluster certificate') as c:
c.argument('thumbprint', help='The cluster certificate thumbprint to be removed')
with self.argument_context('sf cluster client-certificate') as c:
c.argument('is_admin', help='Client authentication type.')
- c.argument('certificate_issuer_thumbprint', help='client certificate issuer thumbprint.')
- c.argument('certificate_common_name', help='client certificate common name.')
- c.argument('admin_client_thumbprints', nargs='+', help='client certificate thumbprint that only has admin permission.')
- c.argument('readonly_client_thumbprints', nargs='+', help='Space-separated list of client certificate thumbprint that has read only permission.')
+ c.argument('certificate_issuer_thumbprint', options_list=['--certificate-issuer-thumbprint', '--cert-issuer-tp'], help='client certificate issuer thumbprint.')
+ c.argument('certificate_common_name', options_list=['--certificate-common-name', '--cert-common-name'], help='client certificate common name.')
+ c.argument('admin_client_thumbprints', options_list=['--admin-client-thumbprints', '--admin-client-tps'], nargs='+', help='client certificate thumbprint that only has admin permission.')
+ c.argument('readonly_client_thumbprints', options_list=['--readonly-client-thumbprints', '--readonly-client-tps'], nargs='+', help='Space-separated list of client certificate thumbprint that has read only permission.')
with self.argument_context('sf cluster client-certificate add') as c:
c.argument('thumbprint', help='client certificate thumbprint.')
@@ -97,8 +107,8 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
c.argument('thumbprints', nargs='+', help='A single or Space-separated list of client certificate thumbprint(s) to be remove.')
with self.argument_context('sf cluster node') as c:
- c.argument('number_of_nodes_to_add', help='number of nodes to add.')
- c.argument('number_of_nodes_to_remove', help='number of nodes to remove.')
+ c.argument('number_of_nodes_to_add', options_list=['--number-of-nodes-to-add', '--nodes-to-add'], help='number of nodes to add.')
+ c.argument('number_of_nodes_to_remove', options_list=['--number-of-nodes-to-remove', '--nodes-to-remove'], help='number of nodes to remove.')
with self.argument_context('sf cluster node-type') as c:
c.argument('capacity', help='The capacity tag applied to nodes in the node type. The cluster resource manager uses these tags to understand how much capacity a node has.')
@@ -111,7 +121,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
c.argument('parameter', help='parameter name')
c.argument('section', help='section name')
c.argument('value', help='Specify the value')
- c.argument('settings_section_description', help='Specify the value')
+ c.argument('settings_section_description', options_list=['--settings-section-description', '--settings-section'], help='Specify the value')
with self.argument_context('sf cluster upgrade-type set') as c:
c.argument('version', help='cluster code version')
@@ -122,22 +132,22 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
c.argument('auto_add_node', help='Add node count automatically when changing reliability.')
with self.argument_context('sf cluster setting set') as c:
- c.argument('settings_section_description', type=get_json_object,
+ c.argument('settings_section_description', options_list=['--settings-section-description', '--settings-section'], type=get_json_object,
help='JSON encoded parameters configuration. Use @{file} to load from a file. '
'For example: [{"section": "NamingService","parameter": "MaxOperationTimeout","value": 1000},{"section": "MaxFileOperationTimeout","parameter": "Max2","value": 1000]')
with self.argument_context('sf cluster setting remove') as c:
- c.argument('settings_section_description', type=get_json_object,
+ c.argument('settings_section_description', options_list=['--settings-section-description', '--settings-section'], type=get_json_object,
help='JSON encoded parameters configuration. Use @{file} to load from a file. '
'For example: [{"section": "NamingService","parameter": "MaxOperationTimeout"}]')
with self.argument_context('sf cluster client-certificate remove') as c:
- c.argument('client_certificate_common_names', type=get_json_object,
+ c.argument('client_certificate_common_names', options_list=['--client-certificate-common-names', '--client-cert-cn'], type=get_json_object,
help='JSON encoded parameters configuration. Use @{file} to load from a file. '
'For example: [{"certificateCommonName": "test.com","certificateIssuerThumbprint": "22B4AE296B504E512DF880A77A2CAE20200FF922"}]')
with self.argument_context('sf cluster client-certificate add') as c:
- c.argument('client_certificate_common_names', type=get_json_object,
+ c.argument('client_certificate_common_names', options_list=['--client-certificate-common-names', '--client-cert-cn'], type=get_json_object,
help='JSON encoded parameters configuration. Use @{file} to load from a file. '
'For example: [{"isAdmin":true, "certificateCommonName": "test.com", '
'"certificateIssuerThumbprint": "22B4AE296B504E512DF880A77A2CAE20200FF922"}]')
@@ -162,11 +172,11 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
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',
+ c.argument('service_type_health_policy_map', options_list=['--service-type-health-policy-map', '--service-type-policy'],
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',
+ c.argument('upgrade_replica_set_check_timeout', options_list=['--upgrade-replica-set-check-timeout', '--replica-check-timeout', '--rep-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.')
@@ -176,20 +186,20 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
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'],
+ 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'],
+ c.argument('default_service_type_max_percent_unhealthy_partitions_per_service', options_list=['--max-porcent-unhealthy-partitions', '--max-unhealthy-parts'],
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'],
+ c.argument('default_service_type_max_percent_unhealthy_replicas_per_partition', options_list=['--max-porcent-unhealthy-replicas', '--max-unhealthy-reps'],
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'],
+ c.argument('default_service_type_max_percent_unhealthy_services', options_list=['--max-porcent-unhealthy-services', '--max-unhealthy-servs'],
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.')
+ c.argument('max_percent_unhealthy_deployed_applications', options_list=['--max-porcent-unhealthy-apps', '--max-unhealthy-apps'],
+ help='Specify the maximum 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.')
@@ -211,8 +221,8 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
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('min_replica_set_size', options_list=['--min-replica-set-size', '--min-replica'], help='Specify the min replica set size for the stateful service.')
+ c.argument('target_replica_set_size', options_list=['--target-replica-set-size', '--target-replica'], 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']),
@@ -221,17 +231,138 @@ def load_arguments(self, _): # pylint: disable=too-many-statements
'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.')
+ # managed cluster
+
+ with self.argument_context('sf managed-cluster create', validator=validate_create_managed_cluster) as c:
+ c.argument('admin_password', help='Admin password used for the virtual machines.')
+ c.argument('admin_user_name', help='Admin user used for the virtual machines.', default='vmadmin')
+ c.argument('dns_name', help='Cluster\'s dns name.')
+ c.argument('sku', help='Cluster\'s Sku, the options are Basic: it will have a minimum of 3 seed nodes and only allows 1 node type and Standard: it will have a minimum of 5 seed nodes and allows multiple node types.', default='Basic')
+ c.argument('client_connection_port', options_list=['--client-connection-port', '--client-port'], help='Port used for client connections to the cluster.', default=19000)
+ c.argument('gateway_connection_port', options_list=['--gateway-connection-port', '--gateway-port'], help='Port used for http connections to the cluster.', default=19080)
+ c.argument('client_cert_is_admin', options_list=['--client-cert-is-admin', '--cert-is-admin'], arg_type=get_three_state_flag(), help='Client authentication type.')
+ c.argument('client_cert_thumbprint', options_list=['--client-cert-thumbprint', '--cert-thumbprint'], help='Client certificate thumbprint.')
+ c.argument('client_cert_common_name', options_list=['--client-cert-common-name', '--cert-common-name'], help='Client certificate common name.')
+ c.argument('client_cert_issuer_thumbprint', options_list=['--client-cert-issuer-thumbprint', '--cert-issuer-thumbprint', '--cert-issuer-tp'], nargs='+', help='Space-separated list of issuer thumbprints.')
+ c.argument('tags', arg_type=tags_type)
+
+ with self.argument_context('sf managed-cluster update') as c:
+ c.argument('client_connection_port', options_list=['--client-connection-port', '--client-port'], help='Port used for client connections to the cluster.')
+ c.argument('gateway_connection_port', options_list=['--gateway-connection-port', '--gateway-port'], help='Port used for http connections to the cluster.')
+ c.argument('dns_name', help='Cluster\'s dns name')
+ c.argument('tags', arg_type=tags_type)
+
+ with self.argument_context('sf managed-cluster client-certificate add') as c:
+ c.argument('is_admin', arg_type=get_three_state_flag(), help='Client authentication type.')
+ c.argument('thumbprint', help='Client certificate thumbprint.')
+ c.argument('common_name', help='Client certificate common name.')
+ c.argument('issuer_thumbprint', nargs='+', help='Space-separated list of issuer thumbprints.')
+
+ with self.argument_context('sf managed-cluster client-certificate delete') as c:
+ c.argument('thumbprint', nargs='+', help='A single or Space-separated list of client certificate thumbprint(s) to be remove.')
+ c.argument('common_name', nargs='+', help='A single or Space-separated list of client certificate common name(s) to be remove.')
+
+ # managed node type
+
+ capacity = CLIArgumentType(
+ options_list=['--capacity'],
+ action=AddNodeTypeCapacityAction,
+ nargs='+',
+ help='Capacity tags applied to the nodes in the node type as key/value pairs, the cluster resource manager uses these tags to understand how much resource a node has. Updating this will override the current values.'
+ 'for example: --capacity ClientConnections=65536 param2=value2')
+
+ placement_property = CLIArgumentType(
+ options_list=['--placement-property'],
+ action=AddNodeTypePlacementPropertyAction,
+ nargs='+',
+ help='Placement tags applied to nodes in the node type as key/value pairs, which can be used to indicate where certain services (workload) should run. Updating this will override the current values.'
+ 'for example: --placement-property NodeColor=Green SomeProperty=5')
+
+ with self.argument_context('sf managed-node-type') as c:
+ c.argument('node_type_name', options_list=['-n', '--name', '--node-type-name'], help='node type name.')
+ c.argument('instance_count', help='essage = "The number of nodes in the node type.')
+ c.argument('primary', arg_type=get_three_state_flag(), help='Specify if the node type is primary. On this node type will run system services. Only one node type should be marked as primary. Primary node type cannot be deleted or changed for existing clusters.')
+ c.argument('disk_size', help='Disk size for each vm in the node type in GBs.', default=100)
+ c.argument('application_start_port', options_list=['--application-start-port', '--app-start-port'], help='Application start port of a range of ports.')
+ c.argument('application_end_port', options_list=['--application-end-port', '--app-end-port'], help='Application End port of a range of ports.')
+ c.argument('ephemeral_start_port', help='Ephemeral start port of a range of ports.')
+ c.argument('ephemeral_end_port', help='Ephemeral end port of a range of ports.')
+ c.argument('vm_size', help='The size of virtual machines in the pool. All virtual machines in a pool are the same size.', default='Standard_D2')
+ c.argument('vm_image_publisher', help='The publisher of the Azure Virtual Machines Marketplace image.', default='MicrosoftWindowsServer')
+ c.argument('vm_image_offer', help='The offer type of the Azure Virtual Machines Marketplace image.', default='WindowsServer')
+ c.argument('vm_image_sku', help='The SKU of the Azure Virtual Machines Marketplace image.', default='2019-Datacenter')
+ c.argument('vm_image_version', help='The version of the Azure Virtual Machines Marketplace image. ', default='latest')
+ c.argument('capacity', arg_type=capacity)
+ c.argument('placement_property', arg_type=placement_property)
+
+ with self.argument_context('sf managed-node-type node') as c:
+ c.argument('node_name', nargs='+', help='list of target nodes to perform the operation.')
+ c.argument('force', arg_type=get_three_state_flag(), help='Using this flag will force the operation even if service fabric is unable to disable the nodes. Use with caution as this might cause data loss if stateful workloads are running on the node.')
+
+ with self.argument_context('sf managed-node-type vm-extension') as c:
+ c.argument('extension_name', help='extension name.')
+ c.argument('force_update_tag', help='If a value is provided and is different from the previous value, the extension handler will be forced to update even if the extension configuration has not changed.')
+ c.argument('publisher', help='The name of the extension handler publisher.')
+ c.argument('extension_type', help='Specifies the type of the extension; an example is \"CustomScriptExtension\".')
+ c.argument('type_handler_version', help='Specifies the version of the script handler.')
+ c.argument('auto_upgrade_minor_version', options_list=['--auto-upgrade-minor-version', '--auto-upgrade'], arg_type=get_three_state_flag(), help='Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true.')
+ c.argument('setting', help='Json formatted public settings for the extension.')
+ c.argument('protected_setting', help='The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all.')
+ c.argument('provision_after_extension', options_list=['--provision-after-extension', '--provision-after'], help='Collection of extension names after which this extension needs to be provisioned.')
+
+ with self.argument_context('sf managed-node-type vm-secret') as c:
+ c.argument('source_vault_id', help='Key Vault resource id containing the certificates.')
+ c.argument('certificate_url', help='This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add). In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8:
{
\"data\":\"\",
\"dataType\":\"pfx\",
\"password\":\"\"
}/')
+ c.argument('certificate_store', help='Specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account.')
+
+
+def paramToDictionary(values):
+ params = {}
+ for item in values:
+ key, value = item.split('=', 1)
+ params[key] = value
+ return params
+
+
+# pylint: disable=protected-access
+# pylint: disable=too-few-public-methods
+class AddAppParamsAction(argparse._AppendAction):
+
+ def __call__(self, parser, namespace, values, option_string=None):
+ try:
+ namespace.application_parameters = paramToDictionary(values)
+ except ValueError:
+ raise CLIError('usage error: {} KEY=VALUE [KEY=VALUE ...]'.format(option_string))
+
+
+class ManagedClusterClientCertAddAction(argparse._AppendAction):
+
+ def __call__(self, parser, namespace, values, option_string=None):
+ ClientCertificate = namespace._cmd.get_models('ClientCertificate')
+ try:
+ kwargs = paramToDictionary(values.split())
+ return ClientCertificate(**kwargs)
+ except ValueError:
+ raise CLIError('usage error: {} KEY=VALUE [KEY=VALUE ...]'.format(option_string))
+
+
+# pylint: disable=protected-access
+# pylint: disable=too-few-public-methods
+class AddNodeTypeCapacityAction(argparse._AppendAction):
+
+ def __call__(self, parser, namespace, values, option_string=None):
+ try:
+ namespace.capacity = paramToDictionary(values)
+ except ValueError:
+ raise CLIError('usage error: {} KEY=VALUE [KEY=VALUE ...]'.format(option_string))
+
# pylint: disable=protected-access
# pylint: disable=too-few-public-methods
-class addAppParamsAction(argparse._AppendAction):
+class AddNodeTypePlacementPropertyAction(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
+ try:
+ namespace.placement_property = paramToDictionary(values)
+ except ValueError:
+ raise CLIError('usage error: {} KEY=VALUE [KEY=VALUE ...]'.format(option_string))
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_sf_utils.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_sf_utils.py
new file mode 100644
index 00000000000..090cd2a030a
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_sf_utils.py
@@ -0,0 +1,48 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+import json
+from azure.cli.core.profiles import ResourceType, get_sdk
+from azure.mgmt.servicefabric.models import (ErrorModelException)
+from knack.log import get_logger
+from ._client_factory import (resource_client_factory)
+
+logger = get_logger(__name__)
+
+
+def _get_resource_group_by_name(cli_ctx, resource_group_name):
+ try:
+ resource_client = resource_client_factory(cli_ctx).resource_groups
+ return resource_client.get(resource_group_name)
+ except Exception as ex: # pylint: disable=broad-except
+ azureError = getattr(ex, 'Azure Error', ex)
+ if hasattr(azureError, 'error') and hasattr(azureError.error, 'error'):
+ if azureError.error.error == 'ResourceGroupNotFound':
+ return None
+ raise
+
+
+def _create_resource_group_name(cli_ctx, rg_name, location, tags=None):
+ progress_indicator = cli_ctx.get_progress_controller()
+ progress_indicator.begin(message='Creating Resource group {}'.format(rg_name))
+
+ ResourceGroup = get_sdk(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES, 'ResourceGroup', mod='models')
+ client = resource_client_factory(cli_ctx).resource_groups
+ parameters = ResourceGroup(location=location, tags=tags)
+ rg = client.create_or_update(rg_name, parameters)
+
+ progress_indicator.end(message='Resource group {} created.'.format(rg_name))
+ return rg
+
+
+def _log_error_exception(ex: ErrorModelException):
+ logger.error("ErrorModelException: %s", ex)
+ if ex.response.content:
+ response_content = json.loads(ex.response.content)
+ if response_content:
+ if 'exception' in response_content:
+ logger.error("Exception: %s", response_content['exception'])
+ else:
+ logger.error("Exception response content: %s", ex.response.content)
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py b/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py
index e803de73876..03acd2dcda9 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/_validators.py
@@ -6,6 +6,7 @@
from msrestazure.azure_exceptions import CloudError
from knack.util import CLIError
from knack.log import get_logger
+from azure.cli.command_modules.servicefabric._sf_utils import _get_resource_group_by_name
from ._client_factory import servicefabric_client_factory
logger = get_logger(__name__)
@@ -46,7 +47,7 @@ def validate_update_application(cmd, namespace):
namespace.application_type_version))
if type_version is None:
raise CLIError("Application type version {}:{} not found. "
- "Create the type version before runnig this command."
+ "Create the type version before running this command."
.format(app.type_name, namespace.application_type_version))
if namespace.upgrade_replica_set_check_timeout:
@@ -81,7 +82,7 @@ def validate_create_application(cmd, namespace):
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."
+ "Create the type version before running this command or use --package-url to create it."
.format(namespace.application_type_name, namespace.application_type_version))
if namespace.minimum_nodes:
@@ -94,6 +95,18 @@ def validate_create_application(cmd, namespace):
raise CLIError("maximum_nodes should be a non-negative integer.")
+def validate_create_managed_cluster(cmd, namespace):
+ rg = _get_resource_group_by_name(cmd.cli_ctx, namespace.resource_group_name)
+ if rg is None and namespace.location is None:
+ raise CLIError("Resource group {} doesn't exists and location is not provided. "
+ "Either create the resource group before running this command or provide the location parameter."
+ .format(namespace.resource_group_name))
+
+ if namespace.client_cert_issuer_thumbprint is not None:
+ if namespace.client_cert_common_name is None:
+ raise CLIError("--client-cert-issuer-thumbprint should be used with --client-cert-common-name.")
+
+
def _safe_get_resource(getResourceAction, params):
try:
return getResourceAction(*params)
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 ec850d4c605..4bada4aef63 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/commands.py
@@ -10,9 +10,12 @@
servicefabric_application_type_client_factory,
servicefabric_application_type_version_client_factory,
servicefabric_application_client_factory,
- servicefabric_service_client_factory)
+ servicefabric_service_client_factory,
+ servicefabric_managed_clusters_client_factory,
+ servicefabric_node_types_client_factory)
+# pylint: disable=too-many-statements
def load_command_table(self, _):
cluster_mgmt_util = CliCommandType(
operations_tmpl='azure.mgmt.servicefabric.operations#ClustersOperations.{}',
@@ -44,7 +47,8 @@ def load_command_table(self, _):
client_factory=servicefabric_client_factory_all
)
- with self.command_group('sf cluster', cluster_mgmt_util, client_factory=servicefabric_clusters_client_factory) as g:
+ 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')
@@ -93,5 +97,63 @@ def load_command_table(self, _):
g.show_command('show', 'get')
g.custom_command('create', 'create_service')
- with self.command_group('sf', is_preview=True):
+ with self.command_group('sf', is_preview=False):
pass
+
+ # Managed clusters
+
+ managed_cluster_custom_type = CliCommandType(
+ operations_tmpl='azure.cli.command_modules.servicefabric.operations.managed_clusters#{}',
+ client_factory=servicefabric_client_factory_all
+ )
+
+ managed_cluster_mgmt = CliCommandType(
+ operations_tmpl='azure.mgmt.servicefabric.operations#ManagedClustersOperations.{}',
+ client_factory=servicefabric_managed_clusters_client_factory
+ )
+
+ managed_node_type_custom_type = CliCommandType(
+ operations_tmpl='azure.cli.command_modules.servicefabric.operations.managed_node_types#{}',
+ client_factory=servicefabric_client_factory_all
+ )
+
+ node_type_mgmt = CliCommandType(
+ operations_tmpl='azure.mgmt.servicefabric.operations#NodeTypesOperations.{}',
+ client_factory=servicefabric_node_types_client_factory
+ )
+
+ with self.command_group('sf managed-cluster', managed_cluster_mgmt, is_preview=True,
+ custom_command_type=managed_cluster_custom_type) as g:
+ g.custom_command('list', 'list_clusters')
+ g.command('delete', 'delete')
+ g.show_command('show', 'get')
+ g.custom_command('create', 'create_cluster')
+ g.custom_command('update', 'update_cluster')
+
+ with self.command_group('sf managed-cluster client-certificate', managed_cluster_mgmt,
+ custom_command_type=managed_cluster_custom_type) as g:
+ g.custom_command('add', 'add_client_cert')
+ g.custom_command('delete', 'delete_client_cert')
+
+ with self.command_group('sf managed-node-type', node_type_mgmt, is_preview=True,
+ custom_command_type=managed_node_type_custom_type) as g:
+ g.command('list', 'list_by_managed_clusters')
+ g.command('delete', 'delete')
+ g.show_command('show', 'get')
+ g.custom_command('create', 'create_node_type')
+ g.custom_command('update', 'update_node_type')
+
+ with self.command_group('sf managed-node-type node', node_type_mgmt,
+ custom_command_type=managed_node_type_custom_type) as g:
+ g.custom_command('reimage', 'reimage_node')
+ g.custom_command('restart', 'restart_node')
+ g.custom_command('delete', 'delete_node')
+
+ with self.command_group('sf managed-node-type vm-extension', node_type_mgmt,
+ custom_command_type=managed_node_type_custom_type) as g:
+ g.custom_command('add', 'add_vm_extension')
+ g.custom_command('delete', 'delete_vm_extension')
+
+ with self.command_group('sf managed-node-type vm-secret', node_type_mgmt,
+ custom_command_type=managed_node_type_custom_type) as g:
+ g.custom_command('add', 'add_vm_secret')
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 61d2017ade5..e5ca625357a 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py
@@ -23,6 +23,7 @@
from azure.cli.core.profiles import ResourceType, get_sdk, 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.cli.command_modules.servicefabric._sf_utils import _get_resource_group_by_name, _create_resource_group_name
from azure.mgmt.servicefabric.models import (ClusterUpdateParameters,
ClientCertificateThumbprint,
@@ -1262,24 +1263,6 @@ def _add_cert_to_all_vmss(cli_ctx, resource_group_name, cluster_id, vault_id, se
t.join()
-def _get_resource_group_by_name(cli_ctx, resource_group_name):
- try:
- resouce_client = resource_client_factory(cli_ctx).resource_groups
- return resouce_client.get(resource_group_name)
- except Exception as ex: # pylint: disable=broad-except
- error = getattr(ex, 'Azure Error', ex)
- if error != 'ResourceGroupNotFound':
- return None
- raise
-
-
-def _create_resource_group_name(cli_ctx, rg_name, location, tags=None):
- ResourceGroup = get_sdk(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES, 'ResourceGroup', mod='models')
- client = resource_client_factory(cli_ctx).resource_groups
- parameters = ResourceGroup(location=location, tags=tags)
- client.create_or_update(rg_name, parameters)
-
-
# pylint: disable=inconsistent-return-statements
def _get_target_instance(reliability_level):
level = reliability_level.lower()
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/operations/managed_clusters.py b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/managed_clusters.py
new file mode 100644
index 00000000000..84e2b853b5d
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/managed_clusters.py
@@ -0,0 +1,202 @@
+# --------------------------------------------------------------------------------------------
+# 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
+
+from azure.cli.core.util import CLIError
+from azure.cli.core.commands import LongRunningOperation
+from azure.cli.command_modules.servicefabric._sf_utils import (
+ _get_resource_group_by_name,
+ _create_resource_group_name,
+ _log_error_exception
+)
+from azure.mgmt.servicefabric.models import (
+ ErrorModelException,
+ ManagedCluster,
+ Sku,
+ ClientCertificate
+)
+
+from knack.log import get_logger
+
+from .._client_factory import (resource_client_factory)
+
+logger = get_logger(__name__)
+
+
+def create_cluster(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ admin_password,
+ admin_user_name=None,
+ dns_name=None,
+ location=None,
+ sku=None,
+ client_connection_port=None,
+ gateway_connection_port=None,
+ client_cert_is_admin=None,
+ client_cert_thumbprint=None,
+ client_cert_common_name=None,
+ client_cert_issuer_thumbprint=None,
+ tags=None):
+ try:
+
+ rg = _get_resource_group_by_name(cmd.cli_ctx, resource_group_name)
+ if rg is None:
+ rg = _create_resource_group_name(cmd.cli_ctx, resource_group_name, location)
+
+ # set defult parameters
+ if location is None:
+ location = rg.location
+
+ if dns_name is None:
+ dns_name = cluster_name
+
+ if admin_user_name is None:
+ admin_user_name = 'vmadmin'
+
+ if sku is None:
+ sku = 'Basic'
+ skuObj = Sku(name=sku)
+
+ if client_connection_port is None:
+ client_connection_port = 19000
+
+ if gateway_connection_port is None:
+ gateway_connection_port = 19080
+
+ client_certs = None
+ if client_cert_thumbprint is not None or client_cert_common_name is not None:
+ client_certs = []
+
+ if client_cert_thumbprint is not None:
+ client_certs.append(ClientCertificate(is_admin=client_cert_is_admin, thumbprint=client_cert_thumbprint))
+ elif client_cert_common_name is not None:
+ if client_cert_issuer_thumbprint is not None:
+ client_cert_issuer_thumbprint = ','.join(client_cert_issuer_thumbprint)
+ client_certs.append(ClientCertificate(is_admin=client_cert_is_admin, common_name=client_cert_common_name, issuer_thumbprint=client_cert_issuer_thumbprint))
+
+ new_cluster = ManagedCluster(location=location,
+ dns_name=dns_name,
+ admin_user_name=admin_user_name,
+ admin_password=admin_password,
+ sku=skuObj,
+ client_connection_port=client_connection_port,
+ http_gateway_connection_port=gateway_connection_port,
+ clients=client_certs,
+ tags=tags)
+
+ logger.info("Creating managed cluster '%s'", cluster_name)
+ poller = client.managed_clusters.create_or_update(resource_group_name, cluster_name, new_cluster)
+ cluster = LongRunningOperation(cmd.cli_ctx)(poller)
+ return cluster
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def update_cluster(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ client_connection_port=None,
+ gateway_connection_port=None,
+ dns_name=None,
+ tags=None):
+ try:
+ cluster = client.managed_clusters.get(resource_group_name, cluster_name)
+
+ if client_connection_port is not None:
+ cluster.client_connection_port = client_connection_port
+ if gateway_connection_port is not None:
+ cluster.http_gateway_connection_port = gateway_connection_port
+ if dns_name is not None:
+ cluster.dns_name = dns_name
+ if tags is not None:
+ cluster.tags = tags
+
+ poller = client.managed_clusters.create_or_update(resource_group_name, cluster_name, cluster)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def add_client_cert(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ thumbprint=None,
+ common_name=None,
+ issuer_thumbprint=None,
+ is_admin=False):
+ try:
+ cluster = client.managed_clusters.get(resource_group_name, cluster_name)
+
+ if cluster.clients is None:
+ cluster.clients = []
+
+ if thumbprint is not None:
+ cluster.clients.append(ClientCertificate(is_admin=is_admin, thumbprint=thumbprint))
+ elif common_name is not None:
+ if issuer_thumbprint is not None:
+ issuer_thumbprint = ','.join(issuer_thumbprint)
+ cluster.clients.append(ClientCertificate(is_admin=is_admin, common_name=common_name, issuer_thumbprint=issuer_thumbprint))
+ else:
+ CLIError("Thumbprint and Common name are empty")
+
+ poller = client.managed_clusters.create_or_update(resource_group_name, cluster_name, cluster)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def delete_client_cert(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ thumbprint=None,
+ common_name=None):
+ try:
+ cluster = client.managed_clusters.get(resource_group_name, cluster_name)
+
+ if cluster.clients is not None:
+ initial_size = len(cluster.clients)
+ if thumbprint is not None:
+ thumbprint = [x.lower() for x in thumbprint]
+ cluster.clients = [cert for cert in cluster.clients if cert.thumbprint.lower() not in thumbprint]
+ if common_name is not None:
+ common_name = [x.lower() for x in common_name]
+ cluster.clients = [cert for cert in cluster.clients if cert.common_name.lower() not in common_name]
+
+ if initial_size > len(cluster.clients):
+ poller = client.managed_clusters.create_or_update(resource_group_name, cluster_name, cluster)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ return cluster
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def list_clusters(client,
+ resource_group_name=None):
+ try:
+ if resource_group_name is None:
+ logger.info("Getting managed clusters by subscription")
+ return client.managed_clusters.list_by_subscription()
+
+ logger.info("Getting managed clusters by resource group '%s'", resource_group_name)
+ return client.managed_clusters.list_by_resource_group(resource_group_name)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def _get_resource_group_location(cli_ctx, resource_group_name):
+ resource_client = resource_client_factory(cli_ctx).resource_groups
+ rg = resource_client.get(resource_group_name)
+ return rg.location
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/operations/managed_node_types.py b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/managed_node_types.py
new file mode 100644
index 00000000000..23db18dcf1f
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/operations/managed_node_types.py
@@ -0,0 +1,273 @@
+# --------------------------------------------------------------------------------------------
+# 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
+
+from azure.cli.core.commands import LongRunningOperation
+from azure.cli.command_modules.servicefabric._sf_utils import (_log_error_exception)
+from azure.mgmt.servicefabric.models import (ErrorModelException,
+ NodeType,
+ EndpointRangeDescription,
+ VMSSExtension,
+ VaultSecretGroup,
+ VaultCertificate,
+ SubResource)
+from knack.log import get_logger
+
+logger = get_logger(__name__)
+
+
+def create_node_type(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ instance_count,
+ primary=False,
+ disk_size=None,
+ application_start_port=None,
+ application_end_port=None,
+ ephemeral_start_port=None,
+ ephemeral_end_port=None,
+ vm_size=None,
+ vm_image_publisher=None,
+ vm_image_offer=None,
+ vm_image_sku=None,
+ vm_image_version=None,
+ capacity=None,
+ placement_property=None):
+
+ # set defult parameters
+ if disk_size is None:
+ disk_size = 100
+
+ if vm_size is None:
+ vm_size = "Standard_D2"
+
+ if vm_image_publisher is None:
+ vm_image_publisher = "MicrosoftWindowsServer"
+
+ if vm_image_offer is None:
+ vm_image_offer = "WindowsServer"
+
+ if vm_image_sku is None:
+ vm_image_sku = "2019-Datacenter"
+
+ if vm_image_version is None:
+ vm_image_version = "latest"
+
+ try:
+ new_node_type = NodeType(is_primary=primary,
+ vm_instance_count=int(instance_count),
+ data_disk_size_gb=disk_size,
+ vm_size=vm_size,
+ vm_image_publisher=vm_image_publisher,
+ vm_image_offer=vm_image_offer,
+ vm_image_sku=vm_image_sku,
+ vm_image_version=vm_image_version,
+ capacities=capacity,
+ placement_properties=placement_property)
+
+ if application_start_port and application_end_port:
+ new_node_type.application_ports = EndpointRangeDescription(start_port=application_start_port,
+ end_port=application_end_port)
+
+ if ephemeral_start_port and ephemeral_end_port:
+ new_node_type.ephemeral_ports = EndpointRangeDescription(start_port=ephemeral_start_port,
+ end_port=ephemeral_end_port)
+
+ logger.info("Creating node type '%s'", node_type_name)
+ poller = client.node_types.create_or_update(resource_group_name, cluster_name, node_type_name, new_node_type)
+ node_type = LongRunningOperation(cmd.cli_ctx)(poller)
+ return node_type
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def update_node_type(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ instance_count=None,
+ application_start_port=None,
+ application_end_port=None,
+ ephemeral_start_port=None,
+ ephemeral_end_port=None,
+ capacity=None,
+ placement_property=None):
+ try:
+ node_type = client.node_types.get(resource_group_name, cluster_name, node_type_name)
+
+ if instance_count is not None:
+ node_type.vm_instance_count = instance_count
+
+ if application_start_port and application_end_port:
+ node_type.application_ports = EndpointRangeDescription(start_port=application_start_port,
+ end_port=application_end_port)
+
+ if ephemeral_start_port and ephemeral_end_port:
+ node_type.ephemeral_ports = EndpointRangeDescription(start_port=ephemeral_start_port,
+ end_port=ephemeral_end_port)
+
+ if capacity is not None:
+ node_type.capacities = capacity
+
+ if placement_property is not None:
+ node_type.placement_properties = placement_property
+
+ poller = client.node_types.create_or_update(resource_group_name, cluster_name, node_type_name, node_type)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def reimage_node(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ node_name,
+ force=False):
+ try:
+ nodes = [node_name] if isinstance(node_name, str) else node_name
+ poller = client.node_types.reimage(resource_group_name, cluster_name, node_type_name, nodes=nodes, force=force)
+ LongRunningOperation(cmd.cli_ctx, start_msg='Reimaging nodes', finish_msg='Nodes reimaged')(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def restart_node(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ node_name,
+ force=False):
+ try:
+ nodes = [node_name] if isinstance(node_name, str) else node_name
+ poller = client.node_types.restart(resource_group_name, cluster_name, node_type_name, nodes=nodes, force=force)
+ LongRunningOperation(cmd.cli_ctx, start_msg='Restarting nodes', finish_msg='Nodes restarted')(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def delete_node(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ node_name,
+ force=False):
+ try:
+ nodes = [node_name] if isinstance(node_name, str) else node_name
+ poller = client.node_types.delete_node(resource_group_name, cluster_name, node_type_name, nodes=nodes, force=force)
+ LongRunningOperation(cmd.cli_ctx, start_msg='Deleting nodes', finish_msg='Nodes deleted')(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def add_vm_extension(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ extension_name,
+ publisher,
+ extension_type,
+ type_handler_version,
+ force_update_tag=None,
+ auto_upgrade_minor_version=True,
+ setting=None,
+ protected_setting=None,
+ provision_after_extension=None):
+ try:
+ node_type: NodeType = client.node_types.get(resource_group_name, cluster_name, node_type_name)
+
+ if node_type.vm_extensions is None:
+ node_type.vm_extensions = []
+
+ newExtension = VMSSExtension(name=extension_name,
+ publisher=publisher,
+ type=extension_type,
+ type_handler_version=type_handler_version,
+ force_update_tag=force_update_tag,
+ auto_upgrade_minor_version=auto_upgrade_minor_version,
+ settings=setting,
+ protected_settings=protected_setting,
+ provision_after_extensions=provision_after_extension)
+
+ node_type.vm_extensions.append(newExtension)
+
+ poller = client.node_types.create_or_update(resource_group_name, cluster_name, node_type_name, node_type)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def delete_vm_extension(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ extension_name):
+ try:
+ node_type: NodeType = client.node_types.get(resource_group_name, cluster_name, node_type_name)
+
+ if node_type.vm_extensions is not None:
+ original_len = len(node_type.vm_extensions)
+ node_type.vm_extensions = list(filter(lambda x: x.name.lower() != extension_name.lower(), node_type.vm_extensions))
+ if original_len == len(node_type.vm_extensions):
+ raise 'Extension with name {} not found'.format(extension_name)
+
+ poller = client.node_types.create_or_update(resource_group_name, cluster_name, node_type_name, node_type)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
+
+
+def add_vm_secret(cmd,
+ client,
+ resource_group_name,
+ cluster_name,
+ node_type_name,
+ source_vault_id,
+ certificate_url,
+ certificate_store):
+ try:
+ node_type: NodeType = client.node_types.get(resource_group_name, cluster_name, node_type_name)
+
+ if node_type.vm_secrets is None:
+ node_type.vm_secrets = []
+
+ vault = next((x for x in node_type.vm_secrets if x.source_vault.id.lower() == source_vault_id.lower()), None)
+
+ vault_certificate = VaultCertificate(certificate_store=certificate_store, certificate_url=certificate_url)
+ new_vault_secret_group = False
+ if vault is None:
+ new_vault_secret_group = True
+ source_vault = SubResource(id=source_vault_id)
+ vault = VaultSecretGroup(source_vault=source_vault, vault_certificates=[])
+
+ if vault.vault_certificates is None:
+ vault.vault_certificates = []
+
+ vault.vault_certificates.append(vault_certificate)
+
+ if new_vault_secret_group:
+ node_type.vm_secrets.append(vault)
+
+ poller = client.node_types.create_or_update(resource_group_name, cluster_name, node_type_name, node_type)
+ return LongRunningOperation(cmd.cli_ctx)(poller)
+ except ErrorModelException as ex:
+ _log_error_exception(ex)
+ raise
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
index d0d17bb1e1e..dc7d790da47 100644
--- 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
@@ -9,58 +9,69 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-graphrbac/0.60.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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":"9ac534f1-d577-4034-a32d-48de400dacbf","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2019-12-04T02:11:41Z","creationType":"Invitation","department":null,"dirSyncEnabled":null,"displayName":"Xing
- Zhou","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":"zhoxing@microsoft.com","mailNickname":"zhoxing_microsoft.com#EXT#","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":["zhoxing@microsoft.com"],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":null,"provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":["SMTP:zhoxing@microsoft.com"],"refreshTokensValidFromDateTime":"2019-12-04T02:11:41Z","showInAddressList":false,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/9ac534f1-d577-4034-a32d-48de400dacbf/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"zhoxing_microsoft.com#EXT#@AzureSDKTeam.onmicrosoft.com","userState":"Accepted","userStateChangedOn":"2019-12-04T03:10:15Z","userType":"Guest"}'
+ 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":["ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","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":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-08-14T17:03:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T09:13:42Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Containers-BBURNS-OPEX-1010","dirSyncEnabled":true,"displayName":"Alfredo
+ Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE
+ ENGINEER","lastDirSyncTime":"2020-09-03T10:09:01Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo
+ Santamaria Gomez,OU=MSE,OU=Users,OU=CoreIdentity,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange
+ Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo
+ Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo
+ San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo
+ Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange
+ Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo
+ Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2020-08-01T20:12:10Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria
+ Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P84536","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"84536","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:
- - '1691'
+ - '17717'
content-type:
- application/json; odata=minimalmetadata; streaming=true; charset=utf-8
dataserviceversion:
- 3.0;
date:
- - Mon, 20 Jul 2020 02:48:33 GMT
+ - Wed, 09 Sep 2020 06:51:06 GMT
duration:
- - '2686600'
+ - '906433'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - 0+nBYYNlPnl3/H/fUvx6oeuxW6RMny3hEOAJ2BrjYsU=
+ - la0GQOy0K83JLr2IJS0vv+Wwgt0zx8OIu70G8VMFtyQ=
ocp-aad-session-key:
- - cJazjVxpP4ptDhQJYNXJCClmiTftRcq_pgSOHeHt20zjpe7qEpHGV0OlXPWoxfJzD8KyhHVAqogH1NKdpT9vZierSKTa1bGOYsCxm3uLaneDi2fDfGGg3dqrHwC14aIG.0KK6XcNQK8j53j2-II0nBEHTZ3iVwbbO_K8f4qa51iM
+ - SkRED5kMhFynzwlwcTgsPX7B6wYAVd_bgtPHcNPFNFAejv6rseg6V86e1_MYYQzsCT70E0Tqa-k4psv5X6pwbHi0ElDl1wwPUT0f2mhpu3Vh5pdeymaVHPz5amJFo62c.lnru8U_ObsZV6Kh7g2Sl38t1dfnfvpy9eeYLgSFwNVM
pragma:
- no-cache
request-id:
- - 93ea1781-b9e5-41c5-a0d4-dc16c2754992
+ - 1afc069a-adcc-4f2f-b053-ba1703d0e347
strict-transport-security:
- max-age=31536000; includeSubDomains
- x-aad-resource-unit:
- - '1'
x-aspnet-version:
- 4.0.30319
x-ms-dirapi-data-contract-version:
- '1.6'
+ x-ms-resource-unit:
+ - '1'
x-powered-by:
- ASP.NET
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "properties": {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a",
+ body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
"sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId":
- "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "9ac534f1-d577-4034-a32d-48de400dacbf",
+ "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",
@@ -82,19 +93,16 @@ interactions:
Content-Length:
- '959'
Content-Type:
- - application/json; charset=utf-8
+ - application/json
ParameterSetName:
- --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.9.0
- accept-language:
- - en-US
+ - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b2 Python/3.7.1 (Windows-10-10.0.18362-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"9ac534f1-d577-4034-a32d-48de400dacbf","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}'
+ 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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}'
headers:
cache-control:
- no-cache
@@ -103,7 +111,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:48:40 GMT
+ - Wed, 09 Sep 2020 06:51:11 GMT
expires:
- '-1'
pragma:
@@ -121,9 +129,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.0.283
+ - 1.1.31.0
x-ms-ratelimit-remaining-subscription-writes:
- - '1176'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -133,7 +141,7 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -143,13 +151,12 @@ interactions:
ParameterSetName:
- --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b2 Python/3.7.1 (Windows-10-10.0.18362-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"9ac534f1-d577-4034-a32d-48de400dacbf","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ 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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -158,7 +165,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:11 GMT
+ - Wed, 09 Sep 2020 06:51:42 GMT
expires:
- '-1'
pragma:
@@ -176,7 +183,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.0.283
+ - 1.1.31.0
x-powered-by:
- ASP.NET
status:
@@ -196,8 +203,8 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-keyvault/7.0 Azure-SDK-For-Python
accept-language:
- en-US
method: POST
@@ -214,7 +221,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:13 GMT
+ - Wed, 09 Sep 2020 06:51:43 GMT
expires:
- '-1'
pragma:
@@ -222,18 +229,18 @@ interactions:
strict-transport-security:
- max-age=31536000;includeSubDomains
www-authenticate:
- - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a",
+ - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
resource="https://vault.azure.net"
x-aspnet-version:
- 4.0.30319
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
x-powered-by:
- ASP.NET
status:
@@ -259,17 +266,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIj3YvhdWyoqA4aSMB/q6cJMNM4F1tJMaHHb/vg15MYcqsviyFKmdQxtWsn1mmM5CqwP6WxNbIGz8if3JPKtq1ZuBEnmndmq0iMTSq4bLmOr8POk/Fp9lqVZu2pjrlf58iSJGmnv4XABEEYvLypnutcoB8i8PtdjVTF0ZfB+oHWNw60b83yLXGv28AEJ51RaTtCsgfwX5MdtupAGrA9kUX+hUFQCX60LhyFfGy6gnKmA6uUzM1tWcTfsPv8/KbEJcDt8bMck7IJXRHCYFZ4OFokK0AtXlX6enyElO6CA2BOAuFMlq5X/ZM74GRBUtA9antTKGajBDTlQTHr3EHyYiUsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz2oiTfuWt9/BHzyNFeldP3HJ5d4rLEax+0GVh+K1LavZCji1FLqwLMPjUUXhEY3Y84BqXq1CH+/diW5c/kz5I3bNLeS0wysX9ikdVyFGMsZCvdFYGCVzmvOrAX2GiXmiXFJpZucA2c6W5c7f6gEfK536VAAdq6IomaKGJybrXHqVxRHWaR7/ybJBozdGRfUh0IK9Gej+p17gsjCJ9RO4V2Aunl6nrpVr3C1d8YL74jPO0maCtp8Kwagp+RWjQML4WPHbCofPenzLbu7INTBh1c6pCmeO9TmkKA5lavSexmd+hS9qQQNqnUAdIOsz2/lsZXVUWXUsSc6AnqFJg+Brz","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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMXYo1bsp+arf13dt1T5bYD7QEKcRG21DKsZcF7iLCQNPmC7Z1wppinkBwQNsmC3VUo3NKM20uuRr5W81wVLwp1FT4yr8yKzhTtLapL5Qjo+9SZT1gFan0n/uXsx8olaq0rIC/XERGp+rodd/nxYrjGYgnqLt5eZs+cH1quYKA/n9PXMMlPXDc23blNqZ/KXMTB3BCLayqMSd0Vch5ICyVYA1lFEc2R/RrWl3xttXCzVcTU4MsQTpqQ4xEu5bWmhKDUEerg8B/HSuQMC0LgeLD3E2luc9P5fqRrQ91IgpN7wnIy0gq+9NTtd7heNZtUoDiVi3CH9HHpLSJ7O5DZaGjECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC05Ik3WQcIS1GFuGwodWZ33VD30NloqWhT2Kz6i2mtID8HCzftoMgjuH7TzyEriNRczYGMwwHchNMGuDKkKyolr+uNwewedqPIYtnwF3Ff+DwS+AiVNMJUY/z1XdxD5dmVMXowVaJCtrVXY+Qz6XYfyjquDLSXIa2daQcgxxcoujdO53t3D9fAfC7G/3Ysl9BtJPXMzcLAdRBxM94LeoThwoNqYBB/nXYm0PvzA6iX2ir/3r/1w6eAK+ppMQVb8cacBkt2yJOIYsBC9h9dvx98XEx984bzDU9AedGKtPAWjvX1CKg8JJLSmZJ2X+17f/NsdghBcGkRcmeo1vtuPLVB","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":"70b3687431bf492ba6dddc538f6ca1f0"}'
+ time based on the issuer provider. Please check again later.","request_id":"87944762987243de92bbfaab8acf11a8"}'
headers:
cache-control:
- no-cache
@@ -278,11 +285,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:16 GMT
+ - Wed, 09 Sep 2020 06:51:45 GMT
expires:
- '-1'
location:
- - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=70b3687431bf492ba6dddc538f6ca1f0
+ - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=87944762987243de92bbfaab8acf11a8
pragma:
- no-cache
strict-transport-security:
@@ -292,11 +299,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
x-powered-by:
- ASP.NET
status:
@@ -314,17 +321,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIj3YvhdWyoqA4aSMB/q6cJMNM4F1tJMaHHb/vg15MYcqsviyFKmdQxtWsn1mmM5CqwP6WxNbIGz8if3JPKtq1ZuBEnmndmq0iMTSq4bLmOr8POk/Fp9lqVZu2pjrlf58iSJGmnv4XABEEYvLypnutcoB8i8PtdjVTF0ZfB+oHWNw60b83yLXGv28AEJ51RaTtCsgfwX5MdtupAGrA9kUX+hUFQCX60LhyFfGy6gnKmA6uUzM1tWcTfsPv8/KbEJcDt8bMck7IJXRHCYFZ4OFokK0AtXlX6enyElO6CA2BOAuFMlq5X/ZM74GRBUtA9antTKGajBDTlQTHr3EHyYiUsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz2oiTfuWt9/BHzyNFeldP3HJ5d4rLEax+0GVh+K1LavZCji1FLqwLMPjUUXhEY3Y84BqXq1CH+/diW5c/kz5I3bNLeS0wysX9ikdVyFGMsZCvdFYGCVzmvOrAX2GiXmiXFJpZucA2c6W5c7f6gEfK536VAAdq6IomaKGJybrXHqVxRHWaR7/ybJBozdGRfUh0IK9Gej+p17gsjCJ9RO4V2Aunl6nrpVr3C1d8YL74jPO0maCtp8Kwagp+RWjQML4WPHbCofPenzLbu7INTBh1c6pCmeO9TmkKA5lavSexmd+hS9qQQNqnUAdIOsz2/lsZXVUWXUsSc6AnqFJg+Brz","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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMXYo1bsp+arf13dt1T5bYD7QEKcRG21DKsZcF7iLCQNPmC7Z1wppinkBwQNsmC3VUo3NKM20uuRr5W81wVLwp1FT4yr8yKzhTtLapL5Qjo+9SZT1gFan0n/uXsx8olaq0rIC/XERGp+rodd/nxYrjGYgnqLt5eZs+cH1quYKA/n9PXMMlPXDc23blNqZ/KXMTB3BCLayqMSd0Vch5ICyVYA1lFEc2R/RrWl3xttXCzVcTU4MsQTpqQ4xEu5bWmhKDUEerg8B/HSuQMC0LgeLD3E2luc9P5fqRrQ91IgpN7wnIy0gq+9NTtd7heNZtUoDiVi3CH9HHpLSJ7O5DZaGjECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC05Ik3WQcIS1GFuGwodWZ33VD30NloqWhT2Kz6i2mtID8HCzftoMgjuH7TzyEriNRczYGMwwHchNMGuDKkKyolr+uNwewedqPIYtnwF3Ff+DwS+AiVNMJUY/z1XdxD5dmVMXowVaJCtrVXY+Qz6XYfyjquDLSXIa2daQcgxxcoujdO53t3D9fAfC7G/3Ysl9BtJPXMzcLAdRBxM94LeoThwoNqYBB/nXYm0PvzA6iX2ir/3r/1w6eAK+ppMQVb8cacBkt2yJOIYsBC9h9dvx98XEx984bzDU9AedGKtPAWjvX1CKg8JJLSmZJ2X+17f/NsdghBcGkRcmeo1vtuPLVB","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":"70b3687431bf492ba6dddc538f6ca1f0"}'
+ time based on the issuer provider. Please check again later.","request_id":"87944762987243de92bbfaab8acf11a8"}'
headers:
cache-control:
- no-cache
@@ -333,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:17 GMT
+ - Wed, 09 Sep 2020 06:51:46 GMT
expires:
- '-1'
pragma:
@@ -345,11 +352,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
x-powered-by:
- ASP.NET
status:
@@ -367,17 +374,17 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIj3YvhdWyoqA4aSMB/q6cJMNM4F1tJMaHHb/vg15MYcqsviyFKmdQxtWsn1mmM5CqwP6WxNbIGz8if3JPKtq1ZuBEnmndmq0iMTSq4bLmOr8POk/Fp9lqVZu2pjrlf58iSJGmnv4XABEEYvLypnutcoB8i8PtdjVTF0ZfB+oHWNw60b83yLXGv28AEJ51RaTtCsgfwX5MdtupAGrA9kUX+hUFQCX60LhyFfGy6gnKmA6uUzM1tWcTfsPv8/KbEJcDt8bMck7IJXRHCYFZ4OFokK0AtXlX6enyElO6CA2BOAuFMlq5X/ZM74GRBUtA9antTKGajBDTlQTHr3EHyYiUsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz2oiTfuWt9/BHzyNFeldP3HJ5d4rLEax+0GVh+K1LavZCji1FLqwLMPjUUXhEY3Y84BqXq1CH+/diW5c/kz5I3bNLeS0wysX9ikdVyFGMsZCvdFYGCVzmvOrAX2GiXmiXFJpZucA2c6W5c7f6gEfK536VAAdq6IomaKGJybrXHqVxRHWaR7/ybJBozdGRfUh0IK9Gej+p17gsjCJ9RO4V2Aunl6nrpVr3C1d8YL74jPO0maCtp8Kwagp+RWjQML4WPHbCofPenzLbu7INTBh1c6pCmeO9TmkKA5lavSexmd+hS9qQQNqnUAdIOsz2/lsZXVUWXUsSc6AnqFJg+Brz","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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMXYo1bsp+arf13dt1T5bYD7QEKcRG21DKsZcF7iLCQNPmC7Z1wppinkBwQNsmC3VUo3NKM20uuRr5W81wVLwp1FT4yr8yKzhTtLapL5Qjo+9SZT1gFan0n/uXsx8olaq0rIC/XERGp+rodd/nxYrjGYgnqLt5eZs+cH1quYKA/n9PXMMlPXDc23blNqZ/KXMTB3BCLayqMSd0Vch5ICyVYA1lFEc2R/RrWl3xttXCzVcTU4MsQTpqQ4xEu5bWmhKDUEerg8B/HSuQMC0LgeLD3E2luc9P5fqRrQ91IgpN7wnIy0gq+9NTtd7heNZtUoDiVi3CH9HHpLSJ7O5DZaGjECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC05Ik3WQcIS1GFuGwodWZ33VD30NloqWhT2Kz6i2mtID8HCzftoMgjuH7TzyEriNRczYGMwwHchNMGuDKkKyolr+uNwewedqPIYtnwF3Ff+DwS+AiVNMJUY/z1XdxD5dmVMXowVaJCtrVXY+Qz6XYfyjquDLSXIa2daQcgxxcoujdO53t3D9fAfC7G/3Ysl9BtJPXMzcLAdRBxM94LeoThwoNqYBB/nXYm0PvzA6iX2ir/3r/1w6eAK+ppMQVb8cacBkt2yJOIYsBC9h9dvx98XEx984bzDU9AedGKtPAWjvX1CKg8JJLSmZJ2X+17f/NsdghBcGkRcmeo1vtuPLVB","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":"70b3687431bf492ba6dddc538f6ca1f0"}'
+ time based on the issuer provider. Please check again later.","request_id":"87944762987243de92bbfaab8acf11a8"}'
headers:
cache-control:
- no-cache
@@ -386,7 +393,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:29 GMT
+ - Wed, 09 Sep 2020 06:51:55 GMT
expires:
- '-1'
pragma:
@@ -398,11 +405,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
x-powered-by:
- ASP.NET
status:
@@ -420,15 +427,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIj3YvhdWyoqA4aSMB/q6cJMNM4F1tJMaHHb/vg15MYcqsviyFKmdQxtWsn1mmM5CqwP6WxNbIGz8if3JPKtq1ZuBEnmndmq0iMTSq4bLmOr8POk/Fp9lqVZu2pjrlf58iSJGmnv4XABEEYvLypnutcoB8i8PtdjVTF0ZfB+oHWNw60b83yLXGv28AEJ51RaTtCsgfwX5MdtupAGrA9kUX+hUFQCX60LhyFfGy6gnKmA6uUzM1tWcTfsPv8/KbEJcDt8bMck7IJXRHCYFZ4OFokK0AtXlX6enyElO6CA2BOAuFMlq5X/ZM74GRBUtA9antTKGajBDTlQTHr3EHyYiUsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQAz2oiTfuWt9/BHzyNFeldP3HJ5d4rLEax+0GVh+K1LavZCji1FLqwLMPjUUXhEY3Y84BqXq1CH+/diW5c/kz5I3bNLeS0wysX9ikdVyFGMsZCvdFYGCVzmvOrAX2GiXmiXFJpZucA2c6W5c7f6gEfK536VAAdq6IomaKGJybrXHqVxRHWaR7/ybJBozdGRfUh0IK9Gej+p17gsjCJ9RO4V2Aunl6nrpVr3C1d8YL74jPO0maCtp8Kwagp+RWjQML4WPHbCofPenzLbu7INTBh1c6pCmeO9TmkKA5lavSexmd+hS9qQQNqnUAdIOsz2/lsZXVUWXUsSc6AnqFJg+Brz","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"70b3687431bf492ba6dddc538f6ca1f0"}'
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMXYo1bsp+arf13dt1T5bYD7QEKcRG21DKsZcF7iLCQNPmC7Z1wppinkBwQNsmC3VUo3NKM20uuRr5W81wVLwp1FT4yr8yKzhTtLapL5Qjo+9SZT1gFan0n/uXsx8olaq0rIC/XERGp+rodd/nxYrjGYgnqLt5eZs+cH1quYKA/n9PXMMlPXDc23blNqZ/KXMTB3BCLayqMSd0Vch5ICyVYA1lFEc2R/RrWl3xttXCzVcTU4MsQTpqQ4xEu5bWmhKDUEerg8B/HSuQMC0LgeLD3E2luc9P5fqRrQ91IgpN7wnIy0gq+9NTtd7heNZtUoDiVi3CH9HHpLSJ7O5DZaGjECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQC05Ik3WQcIS1GFuGwodWZ33VD30NloqWhT2Kz6i2mtID8HCzftoMgjuH7TzyEriNRczYGMwwHchNMGuDKkKyolr+uNwewedqPIYtnwF3Ff+DwS+AiVNMJUY/z1XdxD5dmVMXowVaJCtrVXY+Qz6XYfyjquDLSXIa2daQcgxxcoujdO53t3D9fAfC7G/3Ysl9BtJPXMzcLAdRBxM94LeoThwoNqYBB/nXYm0PvzA6iX2ir/3r/1w6eAK+ppMQVb8cacBkt2yJOIYsBC9h9dvx98XEx984bzDU9AedGKtPAWjvX1CKg8JJLSmZJ2X+17f/NsdghBcGkRcmeo1vtuPLVB","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"87944762987243de92bbfaab8acf11a8"}'
headers:
cache-control:
- no-cache
@@ -437,7 +444,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:41 GMT
+ - Wed, 09 Sep 2020 06:52:07 GMT
expires:
- '-1'
pragma:
@@ -449,11 +456,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
x-powered-by:
- ASP.NET
status:
@@ -471,15 +478,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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/24d55c803e5449aab89aaf43e6bb8dc5","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/24d55c803e5449aab89aaf43e6bb8dc5","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/24d55c803e5449aab89aaf43e6bb8dc5","x5t":"8ot8I6Cd0PGVxQVKI1p4YmdeRmY","cer":"MIIDQjCCAiqgAwIBAgIQaum2BAHWS8q/+Z1gwtVa8TANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDcyMDAyMzkzNloXDTIxMDcyMDAyNDkzNlowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIj3YvhdWyoqA4aSMB/q6cJMNM4F1tJMaHHb/vg15MYcqsviyFKmdQxtWsn1mmM5CqwP6WxNbIGz8if3JPKtq1ZuBEnmndmq0iMTSq4bLmOr8POk/Fp9lqVZu2pjrlf58iSJGmnv4XABEEYvLypnutcoB8i8PtdjVTF0ZfB+oHWNw60b83yLXGv28AEJ51RaTtCsgfwX5MdtupAGrA9kUX+hUFQCX60LhyFfGy6gnKmA6uUzM1tWcTfsPv8/KbEJcDt8bMck7IJXRHCYFZ4OFokK0AtXlX6enyElO6CA2BOAuFMlq5X/ZM74GRBUtA9antTKGajBDTlQTHr3EHyYiUsCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFIW3VLdxWtkcsvE6f8iAXIRKwl/RMB0GA1UdDgQWBBSFt1S3cVrZHLLxOn/IgFyESsJf0TANBgkqhkiG9w0BAQsFAAOCAQEAN5mbgPOzjB+1kpt/Fwql7vo6hjIauALxLcJxOI6BvtoywgQYoyZDjxCkTv9hp8tLrnY7gEBvc2Xh2/SrvRgEdEFj8lkLVQGIrQyxupjdKl3PesoeD1oaEYM4pFtgBGm+Cv4uvG0oDqZb2QqisTClsCxGVgyGXn5+fMH/liqKm97yEM/1BCwIKKKrxSOw2umk5ILn+u2oKu4B9J7eLbHbTUEn19ZrFuWqjCB5mQhLExKqyQDyrglBUPA+iuIcLkiIm0JRjW0ivf2X3YGmNTmPE1DcV0vjKhkPC3MeRckQQFtMc5et4iL9zRtM6g7dvMcUgm4k/mjub5VVC45k1jt2fw==","attributes":{"enabled":true,"nbf":1595212776,"exp":1626749376,"created":1595213377,"updated":1595213377,"recoveryLevel":"Recoverable+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":1595213356,"updated":1595213356}},"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/992e19a5f273406698af747de1d00308","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/992e19a5f273406698af747de1d00308","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/992e19a5f273406698af747de1d00308","x5t":"p4sst3IYnHQASivnrd0VKZ2tu1c","cer":"MIIDQjCCAiqgAwIBAgIQAV30Sd7oR6+jgeWlXHWbgTANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDkwOTA2NDE1OFoXDTIxMDkwOTA2NTE1OFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMXYo1bsp+arf13dt1T5bYD7QEKcRG21DKsZcF7iLCQNPmC7Z1wppinkBwQNsmC3VUo3NKM20uuRr5W81wVLwp1FT4yr8yKzhTtLapL5Qjo+9SZT1gFan0n/uXsx8olaq0rIC/XERGp+rodd/nxYrjGYgnqLt5eZs+cH1quYKA/n9PXMMlPXDc23blNqZ/KXMTB3BCLayqMSd0Vch5ICyVYA1lFEc2R/RrWl3xttXCzVcTU4MsQTpqQ4xEu5bWmhKDUEerg8B/HSuQMC0LgeLD3E2luc9P5fqRrQ91IgpN7wnIy0gq+9NTtd7heNZtUoDiVi3CH9HHpLSJ7O5DZaGjECAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFAFDdgj/Ox6c6hvxvIZUq5HnNKbgMB0GA1UdDgQWBBQBQ3YI/zsenOob8byGVKuR5zSm4DANBgkqhkiG9w0BAQsFAAOCAQEAgqndUN0VPYY+aui31SjurBhTR8jZ8ews/36EeskRs4bjD31oGFy82MO62dFtv4QFVx1NwMkgUJ1aq4hsaNIRszoU/gBc8mn+t4imWsi6un4K1OhVE9h7h+K7NZ89v0QPnfD/4jXrgOpXCM5ONAXaoCBq8Rgd42c4mxELGV+imhRE7V2rcwn7V0TWYYJ92pNoB4Quw1Y/8wtLd6BaKrxv7gbIQQNDi5v7GsvdoP1BRBPrU9PK7mnGtRcWSEeSLlR1olShwtLFih9hFJIE547s2fhsTVjqj2rjFT9zGROSOyPQYPMTN+/LiRkBY4ErRFwsr3961fbEyyHeeTJzsFXeIA==","attributes":{"enabled":true,"nbf":1599633718,"exp":1631170318,"created":1599634318,"updated":1599634318,"recoveryLevel":"Recoverable+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":1599634305,"updated":1599634305}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
headers:
cache-control:
- no-cache
@@ -488,7 +495,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:41 GMT
+ - Wed, 09 Sep 2020 06:52:06 GMT
expires:
- '-1'
pragma:
@@ -500,11 +507,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
x-powered-by:
- ASP.NET
status:
@@ -524,15 +531,15 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-07-20T02:48:28Z"},"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-09-09T06:51:03Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -541,7 +548,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:43 GMT
+ - Wed, 09 Sep 2020 06:52:07 GMT
expires:
- '-1'
pragma:
@@ -569,15 +576,15 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-07-20T02:48:28Z"},"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-09-09T06:51:03Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -586,7 +593,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:43 GMT
+ - Wed, 09 Sep 2020 06:52:07 GMT
expires:
- '-1'
pragma:
@@ -614,24 +621,23 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.9.0
- accept-language:
- - en-US
+ - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b2 Python/3.7.1 (Windows-10-10.0.18362-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5","name":"bim-kv5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5555","name":"bim-kv5555","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv55555","name":"bim-kv55555","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555565","name":"bim-kv555565","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555575","name":"bim-kv555575","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555585","name":"bim-kv555585","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555595","name":"bim-kv555595","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv6666","name":"bim-kv6666","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv8","name":"bim-kv8","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0528","name":"bim-kv-0528","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0529","name":"bim-kv-0529","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0529-2","name":"bim-kv-0529-2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0701","name":"bim-kv-0701","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-111111","name":"bim-kv-111111","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-20200508","name":"bim-kv-20200508","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-20200528","name":"bim-kv-20200528","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-666","name":"bim-kv-666","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test1","name":"bim-sd-test1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test2","name":"bim-sd-test2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test3","name":"bim-sd-test3","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test4","name":"bim-sd-test4","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0506","name":"bimkv0506","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv05062","name":"bimkv05062","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0519","name":"bimkv0519","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0519-3","name":"bimkv0519-3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0703","name":"bimkv0703","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0714","name":"bimkv0714","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv20200418","name":"bimkv20200418","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue1","name":"bimkvissue1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue12","name":"bimkvissue12","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue13","name":"bimkvissue13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue2","name":"bimkvissue2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue3","name":"bimkvissue3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue4","name":"bimkvissue4","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue5","name":"bimkvissue5","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue6","name":"bimkvissue6","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue7","name":"bimkvissue7","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue8","name":"bimkvissue8","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvrbac1","name":"bimkvrbac1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd1","name":"bimkvsd1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd2","name":"bimkvsd2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd3","name":"bimkvsd3","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd5","name":"bimkvsd5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd6","name":"bimkvsd6","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvTest","name":"bimkvTest","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvtest20200513","name":"bimkvtest20200513","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtrack2test","name":"bimtrack2test","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtrack2test2","name":"bimtrack2test2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test","name":"bimkv-nr-test","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test2","name":"bimkv-nr-test2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test3","name":"bimkv-nr-test3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimplkv","name":"bimplkv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoleesrogkp2sipexz3ztok5d3telqoc4sv3msdlggtjt7y2m7pspvaf5ip5zhv3lb/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-4oy6uwcdssqu","name":"sfrp-cli-kv-4oy6uwcdssqu","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/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0227","name":"jlkv0227","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0309","name":"jlkv0309","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yakou/providers/Microsoft.KeyVault/vaults/yakou-BUvault-test","name":"yakou-BUvault-test","type":"Microsoft.KeyVault/vaults","location":"japaneast","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yakou/providers/Microsoft.KeyVault/vaults/yakou-vault-test","name":"yakou-vault-test","type":"Microsoft.KeyVault/vaults","location":"japaneast","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/voting-rg/providers/Microsoft.KeyVault/vaults/votingyg20200719165721","name":"votingyg20200719165721","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yg/providers/Microsoft.KeyVault/vaults/ygkvkv","name":"ygkvkv","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9393","name":"zhoxingtest9393","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9ac53638","name":"zhoxingtest9ac53638","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anmenard09080049-rg/providers/Microsoft.KeyVault/vaults/anmenard09080049-rg","name":"anmenard09080049-rg","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{"clusterName":"anmenard09080049","resourceType":"Service
+ Fabric"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bolianbiajbr1/providers/Microsoft.KeyVault/vaults/kvf8daf","name":"kvf8daf","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bolianzhou6/providers/Microsoft.KeyVault/vaults/bolianzhou6","name":"bolianzhou6","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{"clusterName":"bolianzhou6","resourceType":"Service
+ Fabric"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cailin/providers/Microsoft.KeyVault/vaults/cailinKV1a2f80ea90","name":"cailinKV1a2f80ea90","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chrpap07213925-keyvault/providers/Microsoft.KeyVault/vaults/chrpap07213925","name":"chrpap07213925","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/chrpap081630group/providers/Microsoft.KeyVault/vaults/chrpap081630keyvault","name":"chrpap081630keyvault","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/danmaslab/providers/Microsoft.KeyVault/vaults/danmas3845","name":"danmas3845","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{"hidden-DevTestLabs-LabUId":"77cfd16a-ab5c-43e9-b033-1b1bcf8eb378","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dragosav-sftest/providers/Microsoft.KeyVault/vaults/davsftestcus-tempsub","name":"davsftestcus-tempsub","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jelis/providers/Microsoft.KeyVault/vaults/jelisKVfd5ccb8370","name":"jelisKVfd5ccb8370","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlist/providers/Microsoft.KeyVault/vaults/jlistKVc933607f00","name":"jlistKVc933607f00","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlistbrain/providers/Microsoft.KeyVault/vaults/jlistbrainKVc20163186c","name":"jlistbrainKVc20163186c","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/m98m2/providers/Microsoft.KeyVault/vaults/m98m2kv","name":"m98m2kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceInfrastructure/providers/Microsoft.KeyVault/vaults/SFMesh-OneBox-13ad2c84","name":"SFMesh-OneBox-13ad2c84","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sftest/providers/Microsoft.KeyVault/vaults/sftestKVbc45bd3639","name":"sftestKVbc45bd3639","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shkadam11/providers/Microsoft.KeyVault/vaults/shkadam11KV509c026ddc","name":"shkadam11KV509c026ddc","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/tugup-kv/providers/Microsoft.KeyVault/vaults/tugup-kv","name":"tugup-kv","type":"Microsoft.KeyVault/vaults","location":"centralus","tags":{}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '15003'
+ - '4278'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:44 GMT
+ - Wed, 09 Sep 2020 06:52:08 GMT
expires:
- '-1'
pragma:
@@ -659,15 +665,12 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.9.0
- accept-language:
- - en-US
+ - AZURECLI/2.11.1 azsdk-python-azure-mgmt-keyvault/7.0.0b2 Python/3.7.1 (Windows-10-10.0.18362-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"9ac534f1-d577-4034-a32d-48de400dacbf","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ 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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -676,7 +679,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:45 GMT
+ - Wed, 09 Sep 2020 06:52:09 GMT
expires:
- '-1'
pragma:
@@ -694,7 +697,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.0.283
+ - 1.1.31.0
x-powered-by:
- ASP.NET
status:
@@ -712,15 +715,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-keyvault/7.0
- Azure-SDK-For-Python
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ 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/24d55c803e5449aab89aaf43e6bb8dc5?api-version=7.0
+ uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/992e19a5f273406698af747de1d00308?api-version=7.0
response:
body:
- string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAg8XlwAMgoFMQICB9AEggTYJitaXzvIwhN3t7RpgONCEsVMW5NMMd/IcM5xa4szb69qc/r41ezR9sWQ7Yy5Z+CpWwQ5vFE/95YzxJFDWRuRkMuFDmXzqU+mXWgztbAlnF7lETD7hu1W0tA2FdxgNbXHw+t+72ta1DuXt9/1TyOyBhnHWVpGZa1i2H5sK5jbs+lhsIxbc8MhnF1XZI1O21nl4Db3wiHPbOFVdyrNGkaGflir4iSQBan78oA/DvKg8xoccrP+OnegZXXo2yWvGqnSGLWvJZYqEY3dq7UAzhSK23PP73wMVC+9Rn/VD6HMt1vqCoG03GJ7c5c5ILi0wShrht8ooc11wK6d5GYdShMJ7pctGyBWG8f1Jj536uiwZLWrMwlHTjeQnj5YgIhCFhGvVJEvh6Pejwnk2cCTuaA8MA7PYA8U7J5/LjAcxjAmJdu0891XRI7Da3mADzaGT93ibngkri7upy8RozF6L6nJlVmt6g7t326MnFbf9RifBdOJaUEM49lIs2R8WQbiRRMWY7boF+1Wc8SI7+/Jxd4fI1owXj5DZpKgtsNPfwiLmsSqhZU89Pk+kvM9D8YWUhC5SmTwccliKMLGqkiYW1F3sG54HCun4qqbZ6MHFHUUOJdjCjSUrev167BiieEw5gcLcI5raptIL0xzxv2ab9lVrTjjs24xYphhgxNQdKszRjA4KWQoAc7D5sswddscK0kD0A4awAKdzhSehtS1zzTaA7l+B7eszDKT4C4skBqMSqnQEy3FhPqdRu7uOMYSUZp74CP2ONgNOx7U0Bj8NdnvB5cLoZjbEiGB6TGrUXzfH5OUMgmNj3Fb5/wRDnoNksUJwZA9uDrtDuKgrSgXQvScaN99yA8L2uG+uJ810Vh045EmN6SFJuvRcOrdJDJdDE75BeVtyiZxa3aqQPg6gEc5HQOjES2EFucHWpUQO0j/4LxsUXFpwgxMpWv9+qihLb4JUoH72o7AeFzWzVT//nSPdAOjYeP38Ra9VKKRQnZssHerX04UsJ4tFUHZMMNBwZ0DAyOoLmaWcmHtrrEgYfT8tC6yHuYs35OXpQ/sZkGK1Iva7cfpotX4nfXtajipBud2Mln6pQTwj+TUMVsA3lNqD0uOn3CVmbGdqGNG79q5Ia9yFAPj5PTnarhDEYH0g+/Z7Q+scqUEVfHqWH0k0cC9gfwg0j2CbwK5bK3WA6cp36pahKamDXlaocP1KRH2FJ4KinOpn3q7/cUdSOeoRb5F6fAGk/z5b31lZ+ZTyP3KZdcz9N7kMqLlaw5dYwjcho5S1hUkhY1Ityeu18SKC9kmAYcppg/1+OrXrYIkfA5tkc0nORAN4OPv5aZLya9/Wu3n7vI3RI3jETTLzEwRS5VsATpoxeGM2wZicJ4fd58/qPsuNcNGisUzATJ9kfjmM9vMwf7aBCdQ1ddCBsEq6o/hEW1FW+Wg70SRRrxY5H7Zy/3y9xYO+KYor55Ph3R/r64+SKAIxWM8EEi3Nf1y/CtFoLX+FPY6iEjzvQMU/XRPEBgeDRU6AbliZMZYD0/UFqy62eNNxvjAVpfn7FdyCNhBZKVser99zSzIe21NOZCczHZ8o7VjMBc2+Vl32pVfHrh9GIMerofJkiSbE3b9S3M4FHE6Hfuv2nRhfc14u1LK6wwAdGevUPK4XDGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGEAZQBiAGIAOABmADgAMwAtAGIAYQBiAGEALQA0ADcAOAAxAC0AOQA3AGMAZgAtADcAYQAxADYANwA0AGUAYwA4ADgAZgBkMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAh46rlbJq21vwICB9CAggOQ4G3cxfxH83Bj1Tw7nWbgqX2xweB0x9hNVntJhuIo9U8vL5y7UTSYmQRanK/l7q/zcS84oorn59GkYAaiXsgs8aWwf0T1KV5xQQrDXnw8Fy3OzFWdAw5Ij8szQ9SUDWWZ5vmINjThv5CQ/N5IyzrvZc5CjPIPNnUUZ2yi9MaMrlVPx1QpHY4SlK3O9j2KYye61LsXATcao0x2M+zGQpSmH9F9dRysPF92Xpf068Z7oSU8rLGEoJxogHOE6mqoK0cKrPJOAXsskwe4kjDhzdutxTkXoCLp3qQsMqFbA1IoQv0A7Rc/xNhEtHK+SNONJrNdaMCBflBV6p1e4epyJbBKL477xHYiRiFnDf3P7ROLyQRl3t3DBDEUiohvBo+MQdMfxa41hwrGh5DoKoJuATRxKZCdkna5V3gBE720dBBlCcowpwL+SUW5tYdaMuASHXzm3oiJIfIvmA0zrgamuRgR7ERgoNPULv2ErzmfNlLfF+PKRfRNyg0c3qscgLdyv7sd9V240cYfMDZu7MxXJFE/08cSkAiPBGh1C9NRyRJ6vRfZltfNufydWRms5ZQBzEkt7yhPFiSYPAW3YbJUWDKTdWT9W74SJug7n4HYT6Eryy3m5lBUeoAWIPFqlj/6mzZ9b6yVAsXyRdc3N02vB1DDUznTHfsXVJk4rnNBk4X4BVQ317qwsyl0c8ImlM+kb7smnEr/Sjra/IuRHzq0uaMV/edjt2R5zrAgWu+AXImP2VIZAXT1DChJc9AendRCYhynVUXBJ7TPxzi+cV3/lPVYuiHiSIC/we2xbmxHNtU3H01r47i9Be29jRr7F8SeKbyVI5hu2TR0Pz9L2kldGbVe87DiPPilS2O9uaWI9/8zGVc4pOcJ8iUhIE6tSt4d2tPi3mja6LeKT1iUEZg1RlTsI5E0O6JvurfHk2NyqdyPpB8Cm+0AVEdxJyT5fsCNiy24vJGBmYlV3WFrL3XB02KJB6ich7aPyBJ1DWTviv7ve0BwUaQdmm18N6CSskREE0UMiNmNm6qNPbo9zVDryF4E86zQdBXMSw9P+QHY4j6geD6d+FATgO2ldkvd4DO+d+BC1WmiVsMojg0jb+10ubGLttWTMmo03iDQ77HymOzDVeYT6WzB6uRp3cE16vo9iZVlMpGDhPlzebhU197l4sVt83/IMPBnEQNyxDzlx/PbJJ832j2aPzr4rMvOSW/iRg6aMDcwHzAHBgUrDgMCGgQUdPYbru9sASkScn0K7honG/0fHE0EFN+b69VdWXWLovNjR5k2BE4/OwE/","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/24d55c803e5449aab89aaf43e6bb8dc5","managed":true,"attributes":{"enabled":true,"nbf":1595212776,"exp":1626749376,"created":1595213377,"updated":1595213377,"recoveryLevel":"Recoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/24d55c803e5449aab89aaf43e6bb8dc5"}'
+ string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAiYvJNS/IL4cQICB9AEggTY8NxoAx423sG9fxsksZe+5MMQscff/LAT9yqs/Rj+DhhWYI8Px0nGwMxSV9PuV66AN+x7itJvr1Z9Gv6bYmE99cMtJjEbiOeRPR3Juh8XmJkckMWY7Ui+14wz+FErEYTBy2tDqMyol4sxAF65R5XJBoTHfhVCBIXpKBoqmSyq70928VIwhCtWFR+iiYrNdbJe20eej36bmYiHuMXWbJ+irIWKYufD9kMELHN+mShYuqeruCXCZOpcoLBHj/lHRUgj8zR8RVmCI/jq6NupezFsWUDDsJGvSOpB0qWAhSV/gP4SDrRf6abfFx+QANehy+gez6rfyB8i7jSlkOqEB95ndZMfz3WMhVEEzwY0xf790IrvQY6+ll4uWWcubBnfcknu3lbuS+SCI9nw1EUgmP9GYx7/BBRu0I7VabSh9dufVd6Qx3XB1cpQsIy63T+yPY1KqLLvlGMvNC4bKUHMaZxlEDM1atfQgyiJ0B6WAkqzIjVHLfW/Tf0VCkiJus5HIP5JaWUxnJxspSx5vmzG1HvTuQx1z/315q9rz4ZirAldn49Ke6qiR95MoZf568nb30Rz8VG1VHGxQbZMynkTqzoutOSQ/PUUb2S3YhzBTK93rVqjcBbGA6ygX68CF4jZ7rEg3UbulRN6etIjOuPMVqWvp7eX1nXAGRcxRL7AzJv6GE1Kbt67pd2xI8Hb1CLV7q3pS9W+URY0TJ6R7tF8mTXxtRQ2IZwlKWpQxyLkxQTxXJ7V6QF1n6LUH5od86kgvVSDbYy8OQwv+aImZ3uDa7SOaikMpAsGbozMAu0ZpImQQNzWUpG13hv3Q4G9hQdhHx0EiNEZ43aKemHg5fTs4wyJUQRqFc1v2DCDT57/TAvCcY4NPTP2TTD4XqdK7IR8FIq7yQgjYx0PuxaXAETurN2hmC+V5Zei7Im+TuHPFdADOoN81wqbZWFgSacIZ21Wp6l5R174mIMjKMMfVrqU55lfQTr9ArmQ6rhpF2RklCGxsUzozviiI1Fge3UjPXniBA8e5JktPHVUNGWJ618ktGRqp9QlpO1QDSfeqR3+4WKX26yfuF7cDwrBWXF6K8YUcoeIf6yeY4MeY65XDd0WAcOhG/zjsBIEhfGgEJqd+LTTakzwjDCVSDt8vd5IgeV0h9Gf7DhwoPMmRFyXpM8+MvIfFzVPeWLBpaHVunfgegSHQmT3rnMe4wdpmRbPI2oKYHvoAziMDBxmfWmbFVvWFjG9MblpcnUZl6/jHOJbSGx3wNqYryZB7ijLSCOjpMXMCLRFNfZjwKcAFdkArUkOmtKsdGXrbDlpz6CdaLt0cMifLdUIcfZNUTCd3kOpo1vSmoE0vikntLj2S9WicCJXyXVqF0PiJv8PqfQI1Qlh6ff34ldQqwZV07Xr+9ev67Fx/Ea8JPvyS2K30OC7y4mq2Ph8igy5c+rmPhzz/A24MmqXodbNj+husV9bBxiA3fD6vANC6dYP8c2AW/psWiPL/GbuM687ZgXZ4SRz+NYhT9xV0rzad3LdFWJbhywMHukvtjPDkgEZ/pxQcDbw+5hoFUaKYC02ulzDWpcQ1ncCYlFpzKtBQrFliVU1DlSSIAQ2xW8WUfSauUTg+yOQAXSIzRLg6/rVfiJoaqNezf9a7rdoP06yza4pnndfqjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGMANQAyADAAMgBkAGYAZgAtADgAMgAxADQALQA0AGIAYQAzAC0AOQBlADYANQAtAGUAMQBlAGUAOQBlADgAMAA2ADcANQBjMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAgF3J2MLoe0rgICB9CAggOQztltETzR7Haax+i7GTO1tiSeoZxwLfGcsHGFMTEA3lQ9mXJcyjsqQ3GSFWe5G0cS8ctc/hxXo/vwomZIqsJg4VhMr6Qgf/phkjOtnCd3OK9OwkrRbvkoWShNBfbbdxC+HruFdNQQ1oz6+FqcTxWRJRoWxSiiNcYxQgFtCbtjPsgpqNEBd+YMZ+Bdn4qM5iY4z2UhPo6vCf2+lxCdeqhesYsZodWec1CG/MZhJt36ze4dIQxuD+6QCxBDWHvnJsAyWcgI1b/m+YbVL9UJwI1v9gXf/6GLpT8aKSrDNIV4Xr6Lou+l05fM63j1s2V9D8Ry4MhhBGonBcYam+3xTs59GioIzoPkKnN/aAkwnR1U00WpaNAo1gS2/OxyXv5+H0V1eGhgAfPD/BGu3okKD+kBSdzpW9g4KLTQJkEwmY2DtXo4TVAfr0n685/UP7ZdTVgsHQntCe5Bn4cL4iaBUywT4l5FrN0+D7Pz05FeoXGUUfviZHLW+9tjZP+ovZGA4Qp7xm6IESgcecANihXXWmGFDuKYitJo01wht4FwPq5lDYGcwkMwcZrrFuK8r9gk8kFZPVjeqQefz4WdY4CR6msqhgO7I3b9JPQ+pV5CjMNbG0FCPCTiBtoBVbYuF+6tg91EQiIGQldeOWbtKF3OOCXVUSUjG03ZxVGbu0mXYoVLEFwc1z9eoiUrGfMOH3ScEnC15CX3vn3YCZH5UyUyGfVIoKBSK0kOVYVKTbwjiHQx+me6eUA0weTSr4lHH3THRmRiAyDmkE2NzAwkNzJAXh8THt+qzbHstjiVQVgGnUkIumgOziayNO82kBZjZx7+ITmghcwXecizvMv9P4xNx4esiloGryZGh4V358P7wQyC2W+0ASQWOza9MackDhtKLXNdAZYk3rvAhD5ublXAfPmzpuIDcXxfBrOj2yquxvD2jK8ezmeOuENKDLKg4zixjuF5r4aYTKz8P29P4LfwITEXqyfGOs7iiM9b8E5FE6Xlj/l1N9JO6bSkZw4OAaDjqAEIyfJkX32yh2jlLXDkLTcDhYnRn5rTi5hwLygGaIupYSrM17hLb3EKF5u5eG3DHTvVyeUoVhyJoN788rgbaXO8xQBhW2PdK8ySBcD8qpQ2FfpyccqlbfK55//xXhbHy6MoZGtWVVL7UDN60qJHdrdtIPRQ5coQPxpviTf+va883QQ8ICCa+OBPakyaKwrJK1fmMDcwHzAHBgUrDgMCGgQUAo0wGXQZL+idGcUaTLxX7EyCqH0EFLrxCYcyXxrTDk7WvfNvuPx1AmYw","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/992e19a5f273406698af747de1d00308","managed":true,"attributes":{"enabled":true,"nbf":1599633718,"exp":1631170318,"created":1599634318,"updated":1599634318,"recoveryLevel":"Recoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/992e19a5f273406698af747de1d00308"}'
headers:
cache-control:
- no-cache
@@ -729,7 +732,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:47 GMT
+ - Wed, 09 Sep 2020 06:52:08 GMT
expires:
- '-1'
pragma:
@@ -741,18 +744,18 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.111;act_addr_fam=InterNetwork;
+ - conn_type=Ipv4;addr=131.107.147.101;act_addr_fam=InterNetwork;
x-ms-keyvault-region:
- westus
x-ms-keyvault-service-version:
- - 1.1.8.0
+ - 1.1.60.0
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",
+ body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
"contentVersion": "1.0.0.0", "parameters": {"clusterLocation": {"type": "string",
"metadata": {"description": "Location of the Cluster"}}, "clusterName": {"type":
"string", "metadata": {"description": "Name of your cluster - Between 3 and
@@ -795,111 +798,110 @@ interactions:
"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\'')]",
+ "[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\''))]",
+ "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\''))]",
+ "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\''))]"],
+ ''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\''))]"}}}],
+ "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\'')]"},
+ {"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\'')]"},
+ {"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\'')]",
+ {"intervalInSeconds": 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricTcpGatewayPort'')]",
"protocol": "tcp"}}, {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds":
- 5, "numberOfProbes": 2, "port": "[variables(\''nt0fabricHttpGatewayPort\'')]",
+ 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":
+ 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":
+ [{"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]"},
+ {"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]",
+ "[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":
@@ -910,65 +912,64 @@ interactions:
"EtwManifestProviderConfiguration": [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8",
"scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter":
"4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination":
- "ServiceFabricSystemEventTable"}}]}}}, "StorageAccount": "[variables(\''applicationDiagnosticsStorageAccountName\'')]"},
+ "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\'')]",
+ [{"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\'')]"}],
+ "[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":
+ "[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":
- "F28B7C23A09DD0F195C5054A235A7862675E4666"}, "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/24d55c803e5449aab89aaf43e6bb8dc5"},
+ "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": "A78B2CB772189C74004A2BE7ADDD15299DADBB57"},
+ "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/992e19a5f273406698af747de1d00308"},
"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"}}'''
+ "Bronze"}}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
@@ -985,15 +986,15 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007201049","name":"AzurePSDeployment-202007201049","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":"F28B7C23A09DD0F195C5054A235A7862675E4666"},"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/24d55c803e5449aab89aaf43e6bb8dc5"},"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-07-20T02:49:48.9307261Z","duration":"PT0S","correlationId":"c5648f54-92b0-44fe-a4d8-a6f531b6f4d2","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/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/wows2dqkyse463","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"wows2dqkyse463"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462","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/wows2dqkyse463","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"wows2dqkyse463","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/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462","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/sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/wows2dqkyse463"},{"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-202009082352","name":"AzurePSDeployment-202009082352","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":"A78B2CB772189C74004A2BE7ADDD15299DADBB57"},"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/992e19a5f273406698af747de1d00308"},"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-09-09T06:52:10.1591689Z","duration":"PT0S","correlationId":"3e826adc-95ff-4b2b-9ded-09d4b035d83a","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/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2koahiviqtkcs3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2koahiviqtkcs3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2","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/2koahiviqtkcs3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2koahiviqtkcs3","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/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2","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/sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2koahiviqtkcs3"},{"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
@@ -1002,7 +1003,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:50 GMT
+ - Wed, 09 Sep 2020 06:52:10 GMT
expires:
- '-1'
pragma:
@@ -1016,12 +1017,12 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 200
message: OK
- request:
- body: 'b''{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
+ body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json",
"contentVersion": "1.0.0.0", "parameters": {"clusterLocation": {"type": "string",
"metadata": {"description": "Location of the Cluster"}}, "clusterName": {"type":
"string", "metadata": {"description": "Name of your cluster - Between 3 and
@@ -1064,111 +1065,110 @@ interactions:
"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\'')]",
+ "[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\''))]",
+ "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\''))]",
+ "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\''))]"],
+ ''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\''))]"}}}],
+ "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\'')]"},
+ {"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\'')]"},
+ {"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\'')]",
+ {"intervalInSeconds": 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricTcpGatewayPort'')]",
"protocol": "tcp"}}, {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds":
- 5, "numberOfProbes": 2, "port": "[variables(\''nt0fabricHttpGatewayPort\'')]",
+ 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":
+ 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":
+ [{"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]"},
+ {"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]",
+ "[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":
@@ -1179,65 +1179,64 @@ interactions:
"EtwManifestProviderConfiguration": [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8",
"scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter":
"4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination":
- "ServiceFabricSystemEventTable"}}]}}}, "StorageAccount": "[variables(\''applicationDiagnosticsStorageAccountName\'')]"},
+ "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\'')]",
+ [{"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\'')]"}],
+ "[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":
+ "[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":
- "F28B7C23A09DD0F195C5054A235A7862675E4666"}, "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/24d55c803e5449aab89aaf43e6bb8dc5"},
+ "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": "A78B2CB772189C74004A2BE7ADDD15299DADBB57"},
+ "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/992e19a5f273406698af747de1d00308"},
"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"}}'''
+ "Bronze"}}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
@@ -1254,18 +1253,18 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007201049","name":"AzurePSDeployment-202007201049","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":"F28B7C23A09DD0F195C5054A235A7862675E4666"},"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/24d55c803e5449aab89aaf43e6bb8dc5"},"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-07-20T02:49:54.236162Z","duration":"PT2.3887486S","correlationId":"cec8bbb1-81cf-41b6-994c-279bd17010e0","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/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/wows2dqkyse463","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"wows2dqkyse463"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462","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/wows2dqkyse463","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"wows2dqkyse463","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/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462","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-202009082352","name":"AzurePSDeployment-202009082352","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":"A78B2CB772189C74004A2BE7ADDD15299DADBB57"},"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/992e19a5f273406698af747de1d00308"},"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-09-09T06:52:12.978124Z","duration":"PT0.9047489S","correlationId":"afd6fed2-0d80-461d-b43d-df364100be02","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/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2koahiviqtkcs3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2koahiviqtkcs3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2","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/2koahiviqtkcs3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2koahiviqtkcs3","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/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2","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-202007201049/operationStatuses/08586063934936302765?api-version=2020-06-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009082352/operationStatuses/08586019725534043146?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -1273,7 +1272,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:49:55 GMT
+ - Wed, 09 Sep 2020 06:52:12 GMT
expires:
- '-1'
pragma:
@@ -1283,7 +1282,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1158'
+ - '1199'
status:
code: 201
message: Created
@@ -1301,10 +1300,182 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 06:52:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --secret-identifier --vm-password --cluster-size
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 06:53:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --secret-identifier --vm-password --cluster-size
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 06:53:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --secret-identifier --vm-password --cluster-size
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 06:54:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --secret-identifier --vm-password --cluster-size
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1316,7 +1487,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:50:26 GMT
+ - Wed, 09 Sep 2020 06:54:43 GMT
expires:
- '-1'
pragma:
@@ -1344,10 +1515,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1359,7 +1530,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:50:56 GMT
+ - Wed, 09 Sep 2020 06:55:13 GMT
expires:
- '-1'
pragma:
@@ -1387,10 +1558,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1402,7 +1573,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:51:26 GMT
+ - Wed, 09 Sep 2020 06:55:43 GMT
expires:
- '-1'
pragma:
@@ -1430,10 +1601,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1445,7 +1616,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:51:57 GMT
+ - Wed, 09 Sep 2020 06:56:13 GMT
expires:
- '-1'
pragma:
@@ -1473,10 +1644,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1488,7 +1659,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:52:28 GMT
+ - Wed, 09 Sep 2020 06:56:43 GMT
expires:
- '-1'
pragma:
@@ -1516,10 +1687,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1531,7 +1702,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:52:58 GMT
+ - Wed, 09 Sep 2020 06:57:13 GMT
expires:
- '-1'
pragma:
@@ -1559,10 +1730,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -1574,7 +1745,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:53:29 GMT
+ - Wed, 09 Sep 2020 06:57:43 GMT
expires:
- '-1'
pragma:
@@ -1602,10 +1773,10 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063934936302765?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019725534043146?api-version=2020-06-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -1617,7 +1788,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:53:59 GMT
+ - Wed, 09 Sep 2020 06:58:13 GMT
expires:
- '-1'
pragma:
@@ -1645,13 +1816,13 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007201049","name":"AzurePSDeployment-202007201049","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":"F28B7C23A09DD0F195C5054A235A7862675E4666"},"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/24d55c803e5449aab89aaf43e6bb8dc5"},"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-07-20T02:53:51.6820852Z","duration":"PT3M59.8346718S","correlationId":"cec8bbb1-81cf-41b6-994c-279bd17010e0","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/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/wows2dqkyse463","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"wows2dqkyse463"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462","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/wows2dqkyse463","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"wows2dqkyse463","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/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogswows2dqkyse462","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogswows2dqkyse462","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":"a447eb8e-bc6a-4918-b948-0caeb0459b72","clusterCodeVersion":"7.1.417.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/a447eb8e-bc6a-4918-b948-0caeb0459b72","certificate":{"thumbprint":"F28B7C23A09DD0F195C5054A235A7862675E4666","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":"sflogswows2dqkyse462","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogswows2dqkyse462.blob.core.windows.net/","queueEndpoint":"https://sflogswows2dqkyse462.queue.core.windows.net/","tableEndpoint":"https://sflogswows2dqkyse462.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"7.1.417.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/sflogswows2dqkyse462"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/wows2dqkyse463"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009082352","name":"AzurePSDeployment-202009082352","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":"A78B2CB772189C74004A2BE7ADDD15299DADBB57"},"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/992e19a5f273406698af747de1d00308"},"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-09-09T06:57:45.3332989Z","duration":"PT5M33.2599238S","correlationId":"afd6fed2-0d80-461d-b43d-df364100be02","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/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/2koahiviqtkcs3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2koahiviqtkcs3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2","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/2koahiviqtkcs3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"2koahiviqtkcs3","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/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs2koahiviqtkcs2","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":"f8ff4fd3-e6ff-471e-8303-43f2e76c4cc9","clusterCodeVersion":"7.1.456.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/f8ff4fd3-e6ff-471e-8303-43f2e76c4cc9","certificate":{"thumbprint":"A78B2CB772189C74004A2BE7ADDD15299DADBB57","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":"sflogs2koahiviqtkcs2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs2koahiviqtkcs2.blob.core.windows.net/","queueEndpoint":"https://sflogs2koahiviqtkcs2.queue.core.windows.net/","tableEndpoint":"https://sflogs2koahiviqtkcs2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"7.1.456.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/2koahiviqtkcs3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs2koahiviqtkcs2"}]}}'
headers:
cache-control:
- no-cache
@@ -1660,7 +1831,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 02:54:00 GMT
+ - Wed, 09 Sep 2020 06:58:13 GMT
expires:
- '-1'
pragma:
@@ -1688,24 +1859,24 @@ interactions:
ParameterSetName:
- -g -c -l --secret-identifier --vm-password --cluster-size
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637308102283571577\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"a447eb8e-bc6a-4918-b948-0caeb0459b72\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637352311611410624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"f8ff4fd3-e6ff-471e-8303-43f2e76c4cc9\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/a447eb8e-bc6a-4918-b948-0caeb0459b72\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"F28B7C23A09DD0F195C5054A235A7862675E4666\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/f8ff4fd3-e6ff-471e-8303-43f2e76c4cc9\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"A78B2CB772189C74004A2BE7ADDD15299DADBB57\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -1719,25 +1890,25 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogswows2dqkyse462\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogs2koahiviqtkcs2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogswows2dqkyse462.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogswows2dqkyse462.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogswows2dqkyse462.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2koahiviqtkcs2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogs2koahiviqtkcs2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogs2koahiviqtkcs2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2591'
+ - '2630'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:01 GMT
+ - Wed, 09 Sep 2020 06:58:14 GMT
expires:
- '-1'
pragma:
@@ -1770,24 +1941,24 @@ interactions:
ParameterSetName:
- -g -c
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n
\ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637308102283571577\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"a447eb8e-bc6a-4918-b948-0caeb0459b72\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637352311611410624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"f8ff4fd3-e6ff-471e-8303-43f2e76c4cc9\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/a447eb8e-bc6a-4918-b948-0caeb0459b72\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"F28B7C23A09DD0F195C5054A235A7862675E4666\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/f8ff4fd3-e6ff-471e-8303-43f2e76c4cc9\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"A78B2CB772189C74004A2BE7ADDD15299DADBB57\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -1801,25 +1972,25 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogswows2dqkyse462\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogs2koahiviqtkcs2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogswows2dqkyse462.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogswows2dqkyse462.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogswows2dqkyse462.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2koahiviqtkcs2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogs2koahiviqtkcs2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogs2koahiviqtkcs2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2591'
+ - '2630'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:03 GMT
+ - Wed, 09 Sep 2020 06:58:14 GMT
expires:
- '-1'
pragma:
@@ -1852,12 +2023,12 @@ interactions:
ParameterSetName:
- -g -c
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -1869,7 +2040,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:04 GMT
+ - Wed, 09 Sep 2020 06:58:14 GMT
expires:
- '-1'
pragma:
@@ -1902,12 +2073,12 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -1919,7 +2090,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:05 GMT
+ - Wed, 09 Sep 2020 06:58:14 GMT
expires:
- '-1'
pragma:
@@ -1956,17 +2127,17 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308104461805832\\\"\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352314956281672\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -1976,7 +2147,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:06 GMT
+ - Wed, 09 Sep 2020 06:58:15 GMT
expires:
- '-1'
pragma:
@@ -1993,7 +2164,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1162'
+ - '1199'
status:
code: 200
message: OK
@@ -2011,17 +2182,17 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308104461805832\\\"\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352314956281672\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -2031,7 +2202,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:07 GMT
+ - Wed, 09 Sep 2020 06:58:15 GMT
expires:
- '-1'
pragma:
@@ -2066,12 +2237,12 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-03-01
response:
body:
string: ''
@@ -2079,7 +2250,7 @@ interactions:
cache-control:
- no-cache
date:
- - Mon, 20 Jul 2020 02:54:07 GMT
+ - Wed, 09 Sep 2020 06:58:16 GMT
expires:
- '-1'
pragma:
@@ -2092,7 +2263,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14988'
+ - '14999'
status:
code: 204
message: No Content
@@ -2110,16 +2281,16 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\":
- \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RGX7GXQGWLSZ3J2BG3GDFVQALAG65GGSKDI74PIFIP77VQCCCD3IHYEGSA26K2MME7P/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-Y3EJMX3LDCEADSS/applicationTypes/CALCSERVICEAPP
+ \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RG6NIQOFMNLRODOLSWDDXB6AFIH5BB3JRW2VGTCYCNXXPEFUZ6O64WIFX5RXWBUE2OP/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-IWECWHFMF73SWEW/applicationTypes/CALCSERVICEAPP
not found.\",\r\n \"details\": []\r\n }\r\n}"
headers:
cache-control:
@@ -2129,7 +2300,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:09 GMT
+ - Wed, 09 Sep 2020 06:58:16 GMT
expires:
- '-1'
pragma:
@@ -2158,12 +2329,12 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -2175,7 +2346,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:10 GMT
+ - Wed, 09 Sep 2020 06:58:17 GMT
expires:
- '-1'
pragma:
@@ -2208,12 +2379,12 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -2225,7 +2396,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:12 GMT
+ - Wed, 09 Sep 2020 06:58:16 GMT
expires:
- '-1'
pragma:
@@ -2262,17 +2433,17 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308104524212767\\\"\",\r\n
+ \ \"name\": \"CalcServiceApp\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352314978628536\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -2282,7 +2453,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:12 GMT
+ - Wed, 09 Sep 2020 06:58:17 GMT
expires:
- '-1'
pragma:
@@ -2299,7 +2470,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1173'
+ - '1199'
status:
code: 200
message: OK
@@ -2317,12 +2488,12 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -2334,7 +2505,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:12 GMT
+ - Wed, 09 Sep 2020 06:58:17 GMT
expires:
- '-1'
pragma:
@@ -2371,23 +2542,23 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308104530633027\\\"\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352314981753510\\\"\",\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/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
cache-control:
- no-cache
content-length:
@@ -2395,11 +2566,11 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:54:13 GMT
+ - Wed, 09 Sep 2020 06:58:17 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -2410,7 +2581,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1172'
+ - '1198'
status:
code: 202
message: Accepted
@@ -2428,127 +2599,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
- \ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '353'
- content-type:
- - application/json
- date:
- - Mon, 20 Jul 2020 02:55:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf application-type version create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c --application-type-name --version --package-url
- User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
- \ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '353'
- content-type:
- - application/json
- date:
- - Mon, 20 Jul 2020 02:55: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 application-type version create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c --application-type-name --version --package-url
- User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\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/75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n
+ \ \"name\": \"75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T06:58:18.175351Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '353'
+ - '352'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:56:14 GMT
+ - Wed, 09 Sep 2020 06:59:19 GMT
expires:
- '-1'
pragma:
@@ -2581,25 +2650,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\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/75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n
+ \ \"name\": \"75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T06:58:18.175351Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '353'
+ - '352'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:56:45 GMT
+ - Wed, 09 Sep 2020 06:59:48 GMT
expires:
- '-1'
pragma:
@@ -2632,25 +2701,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\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/75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n
+ \ \"name\": \"75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T06:58:18.175351Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '353'
+ - '352'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:57:15 GMT
+ - Wed, 09 Sep 2020 07:00:18 GMT
expires:
- '-1'
pragma:
@@ -2683,26 +2752,26 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n
+ \ \"name\": \"75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"startTime\": \"2020-09-09T06:58:18.175351Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '419'
+ - '418'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:57:45 GMT
+ - Wed, 09 Sep 2020 07:00:49 GMT
expires:
- '-1'
pragma:
@@ -2735,26 +2804,26 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n
+ \ \"name\": \"75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"startTime\": \"2020-09-09T06:58:18.175351Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '419'
+ - '418'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:58:15 GMT
+ - Wed, 09 Sep 2020 07:01:19 GMT
expires:
- '-1'
pragma:
@@ -2787,25 +2856,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n
- \ \"name\": \"427b373d-4d41-4c33-b834-b0b1b8013f11\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T02:54:13.0633027Z\",\r\n \"endTime\": \"2020-07-20T02:58:31.9985823Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n
+ \ \"name\": \"75d25afb-2d75-4e8e-a224-1ec5a2e1750d\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T06:58:18.175351Z\",\r\n \"endTime\": \"2020-09-09T07:01:28.6519738Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '366'
+ - '365'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:58:46 GMT
+ - Wed, 09 Sep 2020 07:01:49 GMT
expires:
- '-1'
pragma:
@@ -2838,15 +2907,15 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308104530633027\\\"\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352314981753510\\\"\",\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
@@ -2859,7 +2928,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:58:47 GMT
+ - Wed, 09 Sep 2020 07:01:49 GMT
expires:
- '-1'
pragma:
@@ -2892,17 +2961,17 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308104530633027\\\"\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352314981753510\\\"\",\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
@@ -2915,7 +2984,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:58:48 GMT
+ - Wed, 09 Sep 2020 07:01:49 GMT
expires:
- '-1'
pragma:
@@ -2950,28 +3019,28 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-03-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/fe8bf302-cc7b-4f75-8794-e54eecfb01de?api-version=2020-03-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Mon, 20 Jul 2020 02:58:49 GMT
+ - Wed, 09 Sep 2020 07:01:50 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/e94bd738-4c03-4b8c-94d6-91b5562d3581?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/fe8bf302-cc7b-4f75-8794-e54eecfb01de?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -2982,7 +3051,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14995'
+ - '14999'
status:
code: 202
message: Accepted
@@ -3000,25 +3069,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/fe8bf302-cc7b-4f75-8794-e54eecfb01de?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581\",\r\n
- \ \"name\": \"e94bd738-4c03-4b8c-94d6-91b5562d3581\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:58:49.158292Z\",\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/fe8bf302-cc7b-4f75-8794-e54eecfb01de\",\r\n
+ \ \"name\": \"fe8bf302-cc7b-4f75-8794-e54eecfb01de\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:01:50.1372357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '352'
+ - '353'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 02:59:50 GMT
+ - Wed, 09 Sep 2020 07:02:50 GMT
expires:
- '-1'
pragma:
@@ -3051,25 +3120,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/fe8bf302-cc7b-4f75-8794-e54eecfb01de?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581\",\r\n
- \ \"name\": \"e94bd738-4c03-4b8c-94d6-91b5562d3581\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T02:58:49.158292Z\",\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/fe8bf302-cc7b-4f75-8794-e54eecfb01de\",\r\n
+ \ \"name\": \"fe8bf302-cc7b-4f75-8794-e54eecfb01de\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:01:50.1372357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '352'
+ - '353'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:20 GMT
+ - Wed, 09 Sep 2020 07:03:20 GMT
expires:
- '-1'
pragma:
@@ -3102,25 +3171,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/fe8bf302-cc7b-4f75-8794-e54eecfb01de?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e94bd738-4c03-4b8c-94d6-91b5562d3581\",\r\n
- \ \"name\": \"e94bd738-4c03-4b8c-94d6-91b5562d3581\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T02:58:49.158292Z\",\r\n \"endTime\": \"2020-07-20T03:00:32.0128043Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/fe8bf302-cc7b-4f75-8794-e54eecfb01de\",\r\n
+ \ \"name\": \"fe8bf302-cc7b-4f75-8794-e54eecfb01de\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:01:50.1372357Z\",\r\n \"endTime\": \"2020-09-09T07:03:28.6614108Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '365'
+ - '366'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:51 GMT
+ - Wed, 09 Sep 2020 07:03:50 GMT
expires:
- '-1'
pragma:
@@ -3153,16 +3222,16 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\":
- \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RGX7GXQGWLSZ3J2BG3GDFVQALAG65GGSKDI74PIFIP77VQCCCD3IHYEGSA26K2MME7P/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-Y3EJMX3LDCEADSS/applicationTypes/CALCSERVICEAPP/versions/1.0
+ \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RG6NIQOFMNLRODOLSWDDXB6AFIH5BB3JRW2VGTCYCNXXPEFUZ6O64WIFX5RXWBUE2OP/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-IWECWHFMF73SWEW/applicationTypes/CALCSERVICEAPP/versions/1.0
not found.\",\r\n \"details\": []\r\n }\r\n}"
headers:
cache-control:
@@ -3172,7 +3241,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:52 GMT
+ - Wed, 09 Sep 2020 07:03:51 GMT
expires:
- '-1'
pragma:
@@ -3201,12 +3270,12 @@ interactions:
ParameterSetName:
- -g -c
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications?api-version=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -3218,7 +3287,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:54 GMT
+ - Wed, 09 Sep 2020 07:03:51 GMT
expires:
- '-1'
pragma:
@@ -3252,18 +3321,18 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2020-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/\\\"637308104524212767\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"W/\\\"637352314978628536\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
\"Succeeded\"\r\n }\r\n }\r\n ]\r\n}"
headers:
cache-control:
@@ -3273,7 +3342,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:55 GMT
+ - Wed, 09 Sep 2020 07:03:51 GMT
expires:
- '-1'
pragma:
@@ -3307,12 +3376,12 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -3324,7 +3393,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:55 GMT
+ - Wed, 09 Sep 2020 07:03:51 GMT
expires:
- '-1'
pragma:
@@ -3362,23 +3431,23 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308108564976186\\\"\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352318325069109\\\"\",\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/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
cache-control:
- no-cache
content-length:
@@ -3386,11 +3455,11 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:00:55 GMT
+ - Wed, 09 Sep 2020 07:03:51 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -3401,7 +3470,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1163'
+ - '1199'
status:
code: 202
message: Accepted
@@ -3420,15 +3489,15 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07\",\r\n
- \ \"name\": \"558144e3-209a-43a0-bf4f-80bebabece07\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:00:56.4976186Z\",\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/808546d5-c219-41fc-975e-361312054402\",\r\n
+ \ \"name\": \"808546d5-c219-41fc-975e-361312054402\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:03:52.5069109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -3438,7 +3507,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:01:57 GMT
+ - Wed, 09 Sep 2020 07:04:52 GMT
expires:
- '-1'
pragma:
@@ -3472,15 +3541,15 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07\",\r\n
- \ \"name\": \"558144e3-209a-43a0-bf4f-80bebabece07\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:00:56.4976186Z\",\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/808546d5-c219-41fc-975e-361312054402\",\r\n
+ \ \"name\": \"808546d5-c219-41fc-975e-361312054402\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:03:52.5069109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -3490,7 +3559,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:02:28 GMT
+ - Wed, 09 Sep 2020 07:05:22 GMT
expires:
- '-1'
pragma:
@@ -3524,16 +3593,16 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07\",\r\n
- \ \"name\": \"558144e3-209a-43a0-bf4f-80bebabece07\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402\",\r\n
+ \ \"name\": \"808546d5-c219-41fc-975e-361312054402\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
- \ \"startTime\": \"2020-07-20T03:00:56.4976186Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"startTime\": \"2020-09-09T07:03:52.5069109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -3543,7 +3612,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:02:58 GMT
+ - Wed, 09 Sep 2020 07:05:52 GMT
expires:
- '-1'
pragma:
@@ -3577,16 +3646,16 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07\",\r\n
- \ \"name\": \"558144e3-209a-43a0-bf4f-80bebabece07\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402\",\r\n
+ \ \"name\": \"808546d5-c219-41fc-975e-361312054402\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
- \ \"startTime\": \"2020-07-20T03:00:56.4976186Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"startTime\": \"2020-09-09T07:03:52.5069109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -3596,7 +3665,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:03:28 GMT
+ - Wed, 09 Sep 2020 07:06:22 GMT
expires:
- '-1'
pragma:
@@ -3630,15 +3699,15 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/558144e3-209a-43a0-bf4f-80bebabece07\",\r\n
- \ \"name\": \"558144e3-209a-43a0-bf4f-80bebabece07\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:00:56.4976186Z\",\r\n \"endTime\": \"2020-07-20T03:03:32.0734614Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/808546d5-c219-41fc-975e-361312054402\",\r\n
+ \ \"name\": \"808546d5-c219-41fc-975e-361312054402\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:03:52.5069109Z\",\r\n \"endTime\": \"2020-09-09T07:06:28.7016564Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
@@ -3648,7 +3717,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:03:58 GMT
+ - Wed, 09 Sep 2020 07:06:52 GMT
expires:
- '-1'
pragma:
@@ -3682,15 +3751,15 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308108564976186\\\"\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352318325069109\\\"\",\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
@@ -3703,7 +3772,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:03:59 GMT
+ - Wed, 09 Sep 2020 07:06:53 GMT
expires:
- '-1'
pragma:
@@ -3737,12 +3806,12 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applications?api-version=2020-03-01
response:
body:
string: "{\r\n \"value\": []\r\n}"
@@ -3754,7 +3823,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:04:01 GMT
+ - Wed, 09 Sep 2020 07:06:53 GMT
expires:
- '-1'
pragma:
@@ -3793,24 +3862,24 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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/e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f?api-version=2020-03-01
cache-control:
- no-cache
content-length:
@@ -3818,11 +3887,11 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:04:02 GMT
+ - Wed, 09 Sep 2020 07:06:53 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -3833,7 +3902,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1149'
+ - '1199'
status:
code: 202
message: Accepted
@@ -3852,15 +3921,67 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f\",\r\n
+ \ \"name\": \"d3ab4ac4-fdcf-493e-8abf-6857f82fc63f\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:06:53.6559478Z\",\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, 09 Sep 2020 07:07: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 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.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4\",\r\n
- \ \"name\": \"e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:04:01.9400613Z\",\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/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f\",\r\n
+ \ \"name\": \"d3ab4ac4-fdcf-493e-8abf-6857f82fc63f\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:06:53.6559478Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -3870,7 +3991,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:05:03 GMT
+ - Wed, 09 Sep 2020 07:08:23 GMT
expires:
- '-1'
pragma:
@@ -3904,15 +4025,15 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4\",\r\n
- \ \"name\": \"e1c4dd3c-cff3-4dc6-aeba-751a6106a5c4\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:04:01.9400613Z\",\r\n \"endTime\": \"2020-07-20T03:05:32.1177541Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/d3ab4ac4-fdcf-493e-8abf-6857f82fc63f\",\r\n
+ \ \"name\": \"d3ab4ac4-fdcf-493e-8abf-6857f82fc63f\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:06:53.6559478Z\",\r\n \"endTime\": \"2020-09-09T07:08:28.7212477Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
@@ -3922,7 +4043,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:05:33 GMT
+ - Wed, 09 Sep 2020 07:08:53 GMT
expires:
- '-1'
pragma:
@@ -3956,15 +4077,15 @@ interactions:
- -g -c --application-name --application-type-name --application-type-version
--package-url --application-parameters
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -3977,7 +4098,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:05:33 GMT
+ - Wed, 09 Sep 2020 07:08:53 GMT
expires:
- '-1'
pragma:
@@ -4010,17 +4131,17 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -4033,7 +4154,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:05:35 GMT
+ - Wed, 09 Sep 2020 07:08:54 GMT
expires:
- '-1'
pragma:
@@ -4093,24 +4214,24 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007201105","name":"AzurePSDeployment-202007201105","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-07-20T03:05:39.3226066Z","duration":"PT0S","correlationId":"80e016c2-85b4-4f1f-8fc6-220351c29aaf","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"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009090008","name":"AzurePSDeployment-202009090008","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-09-09T07:08:55.135009Z","duration":"PT0S","correlationId":"11f920d5-5cea-4f55-8bc8-2eb0800152a5","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'
+ - '1485'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:05:38 GMT
+ - Wed, 09 Sep 2020 07:08:55 GMT
expires:
- '-1'
pragma:
@@ -4124,7 +4245,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1199'
status:
code: 200
message: OK
@@ -4169,18 +4290,18 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007201105","name":"AzurePSDeployment-202007201105","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-07-20T03:05:42.9698985Z","duration":"PT2.0200592S","correlationId":"0a503e6b-0b32-4048-84bc-57cc813406c2","providers":[{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters/applications/services","locations":[null]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009090008","name":"AzurePSDeployment-202009090008","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-09-09T07:08:56.0368293Z","duration":"PT0.3878408S","correlationId":"bf0dd325-2758-4651-999e-7241f4c9e894","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-202007201105/operationStatuses/08586063925445277903?api-version=2020-06-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009090008/operationStatuses/08586019715498286306?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -4188,7 +4309,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:05:42 GMT
+ - Wed, 09 Sep 2020 07:08:55 GMT
expires:
- '-1'
pragma:
@@ -4198,7 +4319,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1158'
+ - '1199'
status:
code: 201
message: Created
@@ -4217,54 +4338,10 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063925445277903?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 20 Jul 2020 03:06:13 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.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063925445277903?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019715498286306?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -4276,7 +4353,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:06:44 GMT
+ - Wed, 09 Sep 2020 07:09:25 GMT
expires:
- '-1'
pragma:
@@ -4305,10 +4382,10 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063925445277903?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019715498286306?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -4320,7 +4397,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:07:14 GMT
+ - Wed, 09 Sep 2020 07:09:55 GMT
expires:
- '-1'
pragma:
@@ -4349,10 +4426,10 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063925445277903?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019715498286306?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
@@ -4364,7 +4441,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:07:45 GMT
+ - Wed, 09 Sep 2020 07:10:26 GMT
expires:
- '-1'
pragma:
@@ -4393,10 +4470,10 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586063925445277903?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586019715498286306?api-version=2020-06-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -4408,7 +4485,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:08:15 GMT
+ - Wed, 09 Sep 2020 07:10:56 GMT
expires:
- '-1'
pragma:
@@ -4437,13 +4514,13 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-resource/10.2.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007201105","name":"AzurePSDeployment-202007201105","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-07-20T03:07:54.1812651Z","duration":"PT2M13.2314258S","correlationId":"0a503e6b-0b32-4048-84bc-57cc813406c2","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"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009090008","name":"AzurePSDeployment-202009090008","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-09-09T07:10:47.7399438Z","duration":"PT1M52.0909553S","correlationId":"bf0dd325-2758-4651-999e-7241f4c9e894","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
@@ -4452,7 +4529,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 Jul 2020 03:08:16 GMT
+ - Wed, 09 Sep 2020 07:10:56 GMT
expires:
- '-1'
pragma:
@@ -4481,32 +4558,31 @@ interactions:
- -g -c --application-name --state --instance-count -1 --service-name --service-type
--partition-scheme
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications/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/\\\"637308111450240791\\\"\",\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}"
+ \"W/\\\"637352321364722863\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\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:
- - '813'
+ - '780'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:08:19 GMT
+ - Wed, 09 Sep 2020 07:10:57 GMT
expires:
- '-1'
pragma:
@@ -4539,32 +4615,31 @@ interactions:
ParameterSetName:
- -g -c --application-name --service-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters/applications/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/\\\"637308111450240791\\\"\",\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}"
+ \"W/\\\"637352321364722863\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"serviceKind\": \"Stateless\",\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:
- - '813'
+ - '780'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:08:20 GMT
+ - Wed, 09 Sep 2020 07:10:57 GMT
expires:
- '-1'
pragma:
@@ -4597,18 +4672,18 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004/applicationTypes?api-version=2020-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/\\\"637308104524212767\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"W/\\\"637352314978628536\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
\"Succeeded\"\r\n }\r\n }\r\n ]\r\n}"
headers:
cache-control:
@@ -4618,7 +4693,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:08:22 GMT
+ - Wed, 09 Sep 2020 07:10:58 GMT
expires:
- '-1'
pragma:
@@ -4651,17 +4726,17 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308108564976186\\\"\",\r\n
+ \ \"name\": \"1.0\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352318325069109\\\"\",\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
@@ -4674,7 +4749,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:08:22 GMT
+ - Wed, 09 Sep 2020 07:10:58 GMT
expires:
- '-1'
pragma:
@@ -4711,23 +4786,23 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.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/6abdaa9c-35ba-419f-82d7-2903bd42f843?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310?api-version=2020-03-01
cache-control:
- no-cache
content-length:
@@ -4735,11 +4810,11 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:08:22 GMT
+ - Wed, 09 Sep 2020 07:10:59 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/6abdaa9c-35ba-419f-82d7-2903bd42f843?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/c97af735-8a4b-48cc-a293-f9e71484d310?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -4750,7 +4825,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1165'
+ - '1199'
status:
code: 202
message: Accepted
@@ -4768,15 +4843,15 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n
- \ \"name\": \"6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:08:23.0358635Z\",\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/c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n
+ \ \"name\": \"c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:10:59.2797074Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -4786,7 +4861,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:09:24 GMT
+ - Wed, 09 Sep 2020 07:11:59 GMT
expires:
- '-1'
pragma:
@@ -4819,16 +4894,16 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n
- \ \"name\": \"6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n
+ \ \"name\": \"c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
- \ \"startTime\": \"2020-07-20T03:08:23.0358635Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"startTime\": \"2020-09-09T07:10:59.2797074Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -4838,7 +4913,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:09:54 GMT
+ - Wed, 09 Sep 2020 07:12:29 GMT
expires:
- '-1'
pragma:
@@ -4871,16 +4946,16 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n
- \ \"name\": \"6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n
+ \ \"name\": \"c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"Details\\\": \\\"Running Image Builder process ...\\\"\\r\\n}\",\r\n
- \ \"startTime\": \"2020-07-20T03:08:23.0358635Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"startTime\": \"2020-09-09T07:10:59.2797074Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -4890,7 +4965,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:24 GMT
+ - Wed, 09 Sep 2020 07:12:58 GMT
expires:
- '-1'
pragma:
@@ -4923,25 +4998,25 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n
- \ \"name\": \"6abdaa9c-35ba-419f-82d7-2903bd42f843\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:08:23.0358635Z\",\r\n \"endTime\": \"2020-07-20T03:10:32.163373Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n
+ \ \"name\": \"c97af735-8a4b-48cc-a293-f9e71484d310\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:10:59.2797074Z\",\r\n \"endTime\": \"2020-09-09T07:13:28.7721585Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '365'
+ - '366'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:55 GMT
+ - Wed, 09 Sep 2020 07:13:29 GMT
expires:
- '-1'
pragma:
@@ -4974,15 +5049,15 @@ interactions:
ParameterSetName:
- -g -c --application-type-name --version --package-url
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -4995,7 +5070,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:55 GMT
+ - Wed, 09 Sep 2020 07:13:29 GMT
expires:
- '-1'
pragma:
@@ -5031,17 +5106,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5054,7 +5129,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:55 GMT
+ - Wed, 09 Sep 2020 07:13:29 GMT
expires:
- '-1'
pragma:
@@ -5090,17 +5165,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -5113,7 +5188,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:56 GMT
+ - Wed, 09 Sep 2020 07:13:30 GMT
expires:
- '-1'
pragma:
@@ -5149,17 +5224,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5172,7 +5247,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:57 GMT
+ - Wed, 09 Sep 2020 07:13:30 GMT
expires:
- '-1'
pragma:
@@ -5208,17 +5283,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -5231,7 +5306,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:58 GMT
+ - Wed, 09 Sep 2020 07:13:30 GMT
expires:
- '-1'
pragma:
@@ -5267,17 +5342,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5290,7 +5365,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:59 GMT
+ - Wed, 09 Sep 2020 07:13:30 GMT
expires:
- '-1'
pragma:
@@ -5326,17 +5401,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -5349,7 +5424,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:10:59 GMT
+ - Wed, 09 Sep 2020 07:13:30 GMT
expires:
- '-1'
pragma:
@@ -5385,17 +5460,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5408,7 +5483,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:01 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5444,17 +5519,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -5467,7 +5542,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:01 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5503,17 +5578,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5526,7 +5601,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:01 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5562,17 +5637,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -5585,7 +5660,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:02 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5621,17 +5696,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5644,7 +5719,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:02 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5680,17 +5755,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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.2?api-version=2019-03-01
+ 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.2?api-version=2020-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.2\",\r\n
- \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637308113030358635\\\"\",\r\n
+ \ \"name\": \"1.2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352322592797074\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"appPackageUrl\":
\"https://sfrpserviceclienttesting.blob.core.windows.net/test-apps/CalcApp_1.2.sfpkg\",\r\n
\ \"defaultParameterList\": {\r\n \"mode\": \"decimal\",\r\n \"precision\":
@@ -5703,7 +5778,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:02 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5739,17 +5814,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400613\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559478\\\"\",\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\":
@@ -5762,7 +5837,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:04 GMT
+ - Wed, 09 Sep 2020 07:13:31 GMT
expires:
- '-1'
pragma:
@@ -5789,7 +5864,8 @@ interactions:
"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"}}'
+ {}}, "upgradeMode": "Monitored"}, "removeApplicationCapacity": false, "typeName":
+ "CalcServiceApp"}}'
headers:
Accept:
- application/json
@@ -5800,7 +5876,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '672'
+ - '700'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
@@ -5809,17 +5885,17 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -5833,22 +5909,23 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\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/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
cache-control:
- no-cache
content-length:
- - '1448'
+ - '1483'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:11:05 GMT
+ - Wed, 09 Sep 2020 07:13:32 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -5859,7 +5936,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1156'
+ - '1199'
status:
code: 202
message: Accepted
@@ -5880,15 +5957,69 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:13:32.5066988Z\",\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, 09 Sep 2020 07:14:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf 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.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:11:04.9136471Z\",\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/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -5898,7 +6029,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:12:06 GMT
+ - Wed, 09 Sep 2020 07:15:02 GMT
expires:
- '-1'
pragma:
@@ -5934,18 +6065,18 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"\\\",\\r\\n \\\"NodeProgressList\\\":
[]\\r\\n },\\r\\n \\\"NextUpgradeDomain\\\": null\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -5955,7 +6086,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:12:36 GMT
+ - Wed, 09 Sep 2020 07:15:32 GMT
expires:
- '-1'
pragma:
@@ -5991,18 +6122,18 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"\\\",\\r\\n \\\"NodeProgressList\\\":
[]\\r\\n },\\r\\n \\\"NextUpgradeDomain\\\": null\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6012,7 +6143,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:13:06 GMT
+ - Wed, 09 Sep 2020 07:16:03 GMT
expires:
- '-1'
pragma:
@@ -6048,20 +6179,20 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"0\\\",\\r\\n \\\"NodeProgressList\\\":
[\\r\\n {\\r\\n \\\"NodeName\\\": \\\"_nt1vm_0\\\",\\r\\n \\\"UpgradePhase\\\":
2,\\r\\n \\\"PendingSafetyChecks\\\": []\\r\\n }\\r\\n ]\\r\\n
\ },\\r\\n \\\"NextUpgradeDomain\\\": \\\"1\\\"\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6071,7 +6202,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:13:37 GMT
+ - Wed, 09 Sep 2020 07:16:33 GMT
expires:
- '-1'
pragma:
@@ -6107,20 +6238,20 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"0\\\",\\r\\n \\\"NodeProgressList\\\":
[\\r\\n {\\r\\n \\\"NodeName\\\": \\\"_nt1vm_0\\\",\\r\\n \\\"UpgradePhase\\\":
2,\\r\\n \\\"PendingSafetyChecks\\\": []\\r\\n }\\r\\n ]\\r\\n
\ },\\r\\n \\\"NextUpgradeDomain\\\": \\\"1\\\"\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6130,7 +6261,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:14:07 GMT
+ - Wed, 09 Sep 2020 07:17:02 GMT
expires:
- '-1'
pragma:
@@ -6166,18 +6297,18 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"1\\\",\\r\\n \\\"NodeProgressList\\\":
[]\\r\\n },\\r\\n \\\"NextUpgradeDomain\\\": \\\"2\\\"\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6187,7 +6318,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:14:37 GMT
+ - Wed, 09 Sep 2020 07:17:32 GMT
expires:
- '-1'
pragma:
@@ -6223,18 +6354,18 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"1\\\",\\r\\n \\\"NodeProgressList\\\":
[]\\r\\n },\\r\\n \\\"NextUpgradeDomain\\\": \\\"2\\\"\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6244,7 +6375,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:15:07 GMT
+ - Wed, 09 Sep 2020 07:18:02 GMT
expires:
- '-1'
pragma:
@@ -6280,18 +6411,18 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"2\\\",\\r\\n \\\"NodeProgressList\\\":
[]\\r\\n },\\r\\n \\\"NextUpgradeDomain\\\": null\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6301,7 +6432,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:15:38 GMT
+ - Wed, 09 Sep 2020 07:18:33 GMT
expires:
- '-1'
pragma:
@@ -6337,18 +6468,18 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"InProgress:{\\r\\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"InProgress:{\\r\\n
\ \\\"AppUpgradeState\\\": \\\"RollingForwardInProgress\\\",\\r\\n \\\"UpgradeDomainProgress\\\":
{\\r\\n \\\"UpgradeDomainName\\\": \\\"2\\\",\\r\\n \\\"NodeProgressList\\\":
[]\\r\\n },\\r\\n \\\"NextUpgradeDomain\\\": null\\r\\n}\",\r\n \"startTime\":
- \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -6358,7 +6489,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:08 GMT
+ - Wed, 09 Sep 2020 07:19:03 GMT
expires:
- '-1'
pragma:
@@ -6394,15 +6525,15 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n
- \ \"name\": \"6a8086bf-df5c-4c04-9008-d4498b464907\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:11:04.9136471Z\",\r\n \"endTime\": \"2020-07-20T03:16:32.2427796Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n
+ \ \"name\": \"f92de0b9-4e0a-4ed1-b55d-fb91536a9d48\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:13:32.5066988Z\",\r\n \"endTime\": \"2020-09-09T07:19:28.8536721Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
@@ -6412,7 +6543,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:38 GMT
+ - Wed, 09 Sep 2020 07:19:33 GMT
expires:
- '-1'
pragma:
@@ -6448,15 +6579,15 @@ interactions:
--upgrade-domain-timeout --upgrade-timeout --failure-action --upgrade-replica-set-check-timeout
--force-restart
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6470,16 +6601,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:38 GMT
+ - Wed, 09 Sep 2020 07:19:33 GMT
expires:
- '-1'
pragma:
@@ -6512,17 +6644,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6536,16 +6668,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:40 GMT
+ - Wed, 09 Sep 2020 07:19:33 GMT
expires:
- '-1'
pragma:
@@ -6578,17 +6711,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6602,16 +6735,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:42 GMT
+ - Wed, 09 Sep 2020 07:19:33 GMT
expires:
- '-1'
pragma:
@@ -6644,17 +6778,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6668,16 +6802,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:44 GMT
+ - Wed, 09 Sep 2020 07:19:34 GMT
expires:
- '-1'
pragma:
@@ -6710,17 +6845,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6734,16 +6869,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:44 GMT
+ - Wed, 09 Sep 2020 07:19:34 GMT
expires:
- '-1'
pragma:
@@ -6776,17 +6912,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6800,16 +6936,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:46 GMT
+ - Wed, 09 Sep 2020 07:19:34 GMT
expires:
- '-1'
pragma:
@@ -6842,17 +6979,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6866,16 +7003,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:47 GMT
+ - Wed, 09 Sep 2020 07:19:34 GMT
expires:
- '-1'
pragma:
@@ -6908,17 +7046,17 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400614\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559479\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -6932,16 +7070,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1449'
+ - '1484'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:49 GMT
+ - Wed, 09 Sep 2020 07:19:34 GMT
expires:
- '-1'
pragma:
@@ -6969,8 +7108,9 @@ interactions:
"upgradeDomainTimeout": "01:23:20"}, "applicationHealthPolicy": {"considerWarningAsError":
false, "maxPercentUnhealthyDeployedApplications": 0, "defaultServiceTypeHealthPolicy":
{"maxPercentUnhealthyServices": 0, "maxPercentUnhealthyPartitionsPerService":
- 0, "maxPercentUnhealthyReplicasPerPartition": 0}}}, "minimumNodes": 1, "maximumNodes":
- 3, "removeApplicationCapacity": false, "typeName": "CalcServiceApp"}}'
+ 0, "maxPercentUnhealthyReplicasPerPartition": 0}}, "upgradeMode": "Monitored"},
+ "minimumNodes": 1, "maximumNodes": 3, "removeApplicationCapacity": false, "typeName":
+ "CalcServiceApp"}}'
headers:
Accept:
- application/json
@@ -6981,23 +7121,23 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '834'
+ - '862'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308110419400615\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559480\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -7011,22 +7151,23 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\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/98148695-90c1-4789-a1af-b117c1ce89d9?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/df926863-67bb-4f3a-8777-5cd5db48911f?api-version=2020-03-01
cache-control:
- no-cache
content-length:
- - '1496'
+ - '1531'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:16:49 GMT
+ - Wed, 09 Sep 2020 07:19:35 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/98148695-90c1-4789-a1af-b117c1ce89d9?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/df926863-67bb-4f3a-8777-5cd5db48911f?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -7037,7 +7178,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1191'
+ - '1197'
status:
code: 202
message: Accepted
@@ -7055,15 +7196,15 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/98148695-90c1-4789-a1af-b117c1ce89d9?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/df926863-67bb-4f3a-8777-5cd5db48911f?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/98148695-90c1-4789-a1af-b117c1ce89d9\",\r\n
- \ \"name\": \"98148695-90c1-4789-a1af-b117c1ce89d9\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:16:49.7286719Z\",\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/df926863-67bb-4f3a-8777-5cd5db48911f\",\r\n
+ \ \"name\": \"df926863-67bb-4f3a-8777-5cd5db48911f\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:19:35.6195729Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -7073,7 +7214,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:17:50 GMT
+ - Wed, 09 Sep 2020 07:20:35 GMT
expires:
- '-1'
pragma:
@@ -7106,15 +7247,15 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/98148695-90c1-4789-a1af-b117c1ce89d9?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/df926863-67bb-4f3a-8777-5cd5db48911f?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/98148695-90c1-4789-a1af-b117c1ce89d9\",\r\n
- \ \"name\": \"98148695-90c1-4789-a1af-b117c1ce89d9\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:16:49.7286719Z\",\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/df926863-67bb-4f3a-8777-5cd5db48911f\",\r\n
+ \ \"name\": \"df926863-67bb-4f3a-8777-5cd5db48911f\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:19:35.6195729Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -7124,7 +7265,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:18:21 GMT
+ - Wed, 09 Sep 2020 07:21:05 GMT
expires:
- '-1'
pragma:
@@ -7157,25 +7298,25 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/98148695-90c1-4789-a1af-b117c1ce89d9?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/df926863-67bb-4f3a-8777-5cd5db48911f?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/98148695-90c1-4789-a1af-b117c1ce89d9\",\r\n
- \ \"name\": \"98148695-90c1-4789-a1af-b117c1ce89d9\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:16:49.7286719Z\",\r\n \"endTime\": \"2020-07-20T03:18:32.256187Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/df926863-67bb-4f3a-8777-5cd5db48911f\",\r\n
+ \ \"name\": \"df926863-67bb-4f3a-8777-5cd5db48911f\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:19:35.6195729Z\",\r\n \"endTime\": \"2020-09-09T07:21:28.8695715Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '365'
+ - '366'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:18:51 GMT
+ - Wed, 09 Sep 2020 07:21:35 GMT
expires:
- '-1'
pragma:
@@ -7208,15 +7349,15 @@ interactions:
ParameterSetName:
- -g -c --application-name --minimum-nodes --maximum-nodes
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-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/\\\"637308110419400615\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559480\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -7230,16 +7371,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1497'
+ - '1532'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:18:51 GMT
+ - Wed, 09 Sep 2020 07:21:35 GMT
expires:
- '-1'
pragma:
@@ -7272,17 +7414,17 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-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/\\\"637308110419400615\\\"\",\r\n
+ \ \"name\": \"testApp000006\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637352320136559480\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"typeName\":
\"CalcServiceApp\",\r\n \"typeVersion\": \"1.2\",\r\n \"parameters\":
{\r\n \"Mode\": \"binary\",\r\n \"Precision\": \"3\"\r\n },\r\n
@@ -7296,16 +7438,17 @@ interactions:
\"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}"
+ \ \"forceRestart\": true,\r\n \"upgradeMode\": \"Monitored\"\r\n
+ \ }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1497'
+ - '1532'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:18:53 GMT
+ - Wed, 09 Sep 2020 07:21:36 GMT
expires:
- '-1'
pragma:
@@ -7340,28 +7483,28 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-03-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7ec2298a-5c18-4855-b83b-e51ca58de3d6?api-version=2020-03-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Mon, 20 Jul 2020 03:18:55 GMT
+ - Wed, 09 Sep 2020 07:21:36 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/c4789de6-2274-4af2-baf8-d86e851b923e?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/7ec2298a-5c18-4855-b83b-e51ca58de3d6?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -7372,7 +7515,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14992'
+ - '14999'
status:
code: 202
message: Accepted
@@ -7390,15 +7533,15 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7ec2298a-5c18-4855-b83b-e51ca58de3d6?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e\",\r\n
- \ \"name\": \"c4789de6-2274-4af2-baf8-d86e851b923e\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:18:55.1658181Z\",\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/7ec2298a-5c18-4855-b83b-e51ca58de3d6\",\r\n
+ \ \"name\": \"7ec2298a-5c18-4855-b83b-e51ca58de3d6\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:21:36.9648947Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -7408,7 +7551,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:19:55 GMT
+ - Wed, 09 Sep 2020 07:22:36 GMT
expires:
- '-1'
pragma:
@@ -7441,15 +7584,15 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7ec2298a-5c18-4855-b83b-e51ca58de3d6?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e\",\r\n
- \ \"name\": \"c4789de6-2274-4af2-baf8-d86e851b923e\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:18:55.1658181Z\",\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/7ec2298a-5c18-4855-b83b-e51ca58de3d6\",\r\n
+ \ \"name\": \"7ec2298a-5c18-4855-b83b-e51ca58de3d6\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:21:36.9648947Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -7459,7 +7602,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:20:26 GMT
+ - Wed, 09 Sep 2020 07:23:06 GMT
expires:
- '-1'
pragma:
@@ -7492,25 +7635,25 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7ec2298a-5c18-4855-b83b-e51ca58de3d6?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c4789de6-2274-4af2-baf8-d86e851b923e\",\r\n
- \ \"name\": \"c4789de6-2274-4af2-baf8-d86e851b923e\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:18:55.1658181Z\",\r\n \"endTime\": \"2020-07-20T03:20:32.2836363Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/7ec2298a-5c18-4855-b83b-e51ca58de3d6\",\r\n
+ \ \"name\": \"7ec2298a-5c18-4855-b83b-e51ca58de3d6\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:21:36.9648947Z\",\r\n \"endTime\": \"2020-09-09T07:23:28.882895Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '366'
+ - '365'
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:20:56 GMT
+ - Wed, 09 Sep 2020 07:23:36 GMT
expires:
- '-1'
pragma:
@@ -7545,28 +7688,28 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
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
+ 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=2020-03-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8cc95258-fa92-4047-bdd8-edb81ca306c8?api-version=2020-03-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Mon, 20 Jul 2020 03:20:58 GMT
+ - Wed, 09 Sep 2020 07:23:38 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/43676425-928c-4be8-9e8a-d40fdb44c9aa?api-version=2019-03-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/8cc95258-fa92-4047-bdd8-edb81ca306c8?api-version=2020-03-01
pragma:
- no-cache
server:
@@ -7577,7 +7720,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14991'
+ - '14999'
status:
code: 202
message: Accepted
@@ -7595,15 +7738,15 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8cc95258-fa92-4047-bdd8-edb81ca306c8?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa\",\r\n
- \ \"name\": \"43676425-928c-4be8-9e8a-d40fdb44c9aa\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:20:58.8106274Z\",\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/8cc95258-fa92-4047-bdd8-edb81ca306c8\",\r\n
+ \ \"name\": \"8cc95258-fa92-4047-bdd8-edb81ca306c8\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:23:38.4614267Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -7613,7 +7756,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:21:59 GMT
+ - Wed, 09 Sep 2020 07:24:38 GMT
expires:
- '-1'
pragma:
@@ -7646,15 +7789,15 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8cc95258-fa92-4047-bdd8-edb81ca306c8?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa\",\r\n
- \ \"name\": \"43676425-928c-4be8-9e8a-d40fdb44c9aa\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-20T03:20:58.8106274Z\",\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/8cc95258-fa92-4047-bdd8-edb81ca306c8\",\r\n
+ \ \"name\": \"8cc95258-fa92-4047-bdd8-edb81ca306c8\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-09T07:23:38.4614267Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
headers:
cache-control:
@@ -7664,7 +7807,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:22:30 GMT
+ - Wed, 09 Sep 2020 07:25:08 GMT
expires:
- '-1'
pragma:
@@ -7697,15 +7840,15 @@ interactions:
ParameterSetName:
- -g -c --application-type-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8cc95258-fa92-4047-bdd8-edb81ca306c8?api-version=2020-03-01
response:
body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/43676425-928c-4be8-9e8a-d40fdb44c9aa\",\r\n
- \ \"name\": \"43676425-928c-4be8-9e8a-d40fdb44c9aa\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-20T03:20:58.8106274Z\",\r\n \"endTime\": \"2020-07-20T03:22:32.3336194Z\",\r\n
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8cc95258-fa92-4047-bdd8-edb81ca306c8\",\r\n
+ \ \"name\": \"8cc95258-fa92-4047-bdd8-edb81ca306c8\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-09T07:23:38.4614267Z\",\r\n \"endTime\": \"2020-09-09T07:25:28.9518113Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
headers:
cache-control:
@@ -7715,7 +7858,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:23:00 GMT
+ - Wed, 09 Sep 2020 07:25:38 GMT
expires:
- '-1'
pragma:
@@ -7748,16 +7891,16 @@ interactions:
ParameterSetName:
- -g -c --application-name
User-Agent:
- - python/3.8.0 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.9.0
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.18 msrest_azure/0.6.3
+ azure-mgmt-servicefabric/0.5.0 Azure-SDK-For-Python AZURECLI/2.11.1
accept-language:
- en-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
+ 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=2020-03-01
response:
body:
string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\":
- \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RGX7GXQGWLSZ3J2BG3GDFVQALAG65GGSKDI74PIFIP77VQCCCD3IHYEGSA26K2MME7P/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-Y3EJMX3LDCEADSS/applications/TESTAPPWN4P
+ \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/CLITEST.RG6NIQOFMNLRODOLSWDDXB6AFIH5BB3JRW2VGTCYCNXXPEFUZ6O64WIFX5RXWBUE2OP/providers/Microsoft.ServiceFabric/clusters/SFRP-CLI-IWECWHFMF73SWEW/applications/TESTAPPMO3E
not found.\",\r\n \"details\": []\r\n }\r\n}"
headers:
cache-control:
@@ -7767,7 +7910,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 20 Jul 2020 03:23:01 GMT
+ - Wed, 09 Sep 2020 07:25:39 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml
new file mode 100644
index 00000000000..0cd3f30fdae
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_basic_cluster.yaml
@@ -0,0 +1,2793 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54: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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54: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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54: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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:18 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:19 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:20 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:20 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:20 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T02:54:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "southcentralus", "properties": {"dnsName": "sfrp-cli-000002",
+ "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName":
+ "vmadmin", "adminPassword": "Pass@000003", "clients": [{"isAdmin": true, "thumbprint":
+ "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, "sku": {"name": "Basic"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '326'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\":
+ 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n
+ \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n
+ \ ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '862'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\":
+ \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:54:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\":
+ \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:55:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\":
+ \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:55:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\":
+ \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:56:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\":
+ \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:56:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/ff0d0004-1210-4297-824e-1919a4c138bc?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"ff0d0004-1210-4297-824e-1919a4c138bc\",\r\n \"startTime\":
+ \"2020-09-09T02:54:23.8041357Z\",\r\n \"endTime\": \"2020-09-09T02:57:06.0067968Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:57:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterState\":
+ \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\":
+ \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n
+ \ \"clusterCertificateThumbprint\": \"31A218F5161013F32CB96FCD3878196CB0DCA3A4\",\r\n
+ \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\":
+ 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n
+ \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n
+ \ ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1059'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:57:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB":
+ 100, "vmSize": "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer",
+ "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion":
+ "latest"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '245'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '763'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:57:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ 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 managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:57:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:58:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:58:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:59:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 02:59:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:00:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:00:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:01:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:02:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:02:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:02:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:03:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:04:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:04:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/29490004-e442-4e8b-b8c1-76ecb8f6ccfe?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"29490004-e442-4e8b-b8c1-76ecb8f6ccfe\",\r\n \"startTime\":
+ \"2020-09-09T02:57:27.3644881Z\",\r\n \"endTime\": \"2020-09-09T03:04:59.4668819Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:05:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '764'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:05:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: '{"error":{"code":"InvalidParameter","message":"Cluster must have at
+ least one active primary node type."}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '106'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:05:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterState\":
+ \"Deploying\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"31A218F5161013F32CB96FCD3878196CB0DCA3A4\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1096'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:05:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"81264cd2-f077-40d7-936e-af44ca05e9b1\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"31A218F5161013F32CB96FCD3878196CB0DCA3A4\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1018'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:05:04 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:05:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:06:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:06:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:07:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:07:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:08:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:08:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:09:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:09:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:10:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:10:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:11:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:11:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c0720004-7e1a-4952-97a3-d7479bf8e277?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c0720004-7e1a-4952-97a3-d7479bf8e277\",\r\n \"startTime\":
+ \"2020-09-09T03:05:04.6232388Z\",\r\n \"endTime\": \"2020-09-09T03:12:05.8528337Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:12:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Wed, 09 Sep 2020 03:12:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ 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_cert_and_ext.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cert_and_ext.yaml
new file mode 100644
index 00000000000..4cf8c7d6bd8
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cert_and_ext.yaml
@@ -0,0 +1,7921 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:04 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:05 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:05 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:06 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:06 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:09 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T04:32:03Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "southcentralus", "properties": {"dnsName": "sfrp-cli-000002",
+ "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName":
+ "vmadmin", "adminPassword": "Pass@000003", "clients": [{"isAdmin": true, "thumbprint":
+ "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, "sku": {"name": "Basic"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '326'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\":
+ 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n
+ \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n
+ \ ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '862'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:32:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:33:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:33:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:34:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:34:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:35:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/c5ec0003-da86-4bd9-a5eb-5d8fce405a80?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"c5ec0003-da86-4bd9-a5eb-5d8fce405a80\",\r\n \"startTime\":
+ \"2020-09-09T04:32:12.8841884Z\",\r\n \"endTime\": \"2020-09-09T04:35:39.4347032Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:35:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\":
+ \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n
+ \ \"clusterCertificateThumbprint\": \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n
+ \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\":
+ 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n
+ \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n
+ \ ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1059'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:35:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB":
+ 100, "vmSize": "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer",
+ "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion":
+ "latest"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '245'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '763'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:35:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ 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 managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:36:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:36:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:37:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:37:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:38:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:38:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:39:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:39:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:40:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:40:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:41:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:41:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:42:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/e4b50003-f077-4df7-86ec-4e1a498ee6b8?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"e4b50003-f077-4df7-86ec-4e1a498ee6b8\",\r\n \"startTime\":
+ \"2020-09-09T04:35:48.6044464Z\",\r\n \"endTime\": \"2020-09-09T04:42:50.4448771Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:42:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '764'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:42:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '764'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:42:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"tags": {}, "properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB":
+ 100, "placementProperties": {}, "capacities": {}, "vmSize": "Standard_D2", "vmImagePublisher":
+ "MicrosoftWindowsServer", "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter",
+ "vmImageVersion": "latest", "vmExtensions": [{"name": "csetest", "properties":
+ {"publisher": "Microsoft.Compute", "type": "BGInfo", "typeHandlerVersion": "2.1",
+ "autoUpgradeMinorVersion": true}}]}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '471'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\":
+ \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1033'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:42:51 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:43:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:43:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:44:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:44:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:45:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:45:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:46:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:46:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:47:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:47:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:48:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:48:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:49:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:49:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:50:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:50:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:51:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b2510003-a04e-4a45-83ae-0d1aad475f38?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b2510003-a04e-4a45-83ae-0d1aad475f38\",\r\n \"startTime\":
+ \"2020-09-09T04:42:52.0398528Z\",\r\n \"endTime\": \"2020-09-09T04:51:46.4561641Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:51:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-extension add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --extension-name --publisher --extension-type --type-handler-version
+ --auto-upgrade-minor-version
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\":
+ \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1034'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:51:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\":
+ \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1034'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:51:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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":["ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","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":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-08-14T17:03:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T09:13:42Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Containers-BBURNS-OPEX-1010","dirSyncEnabled":true,"displayName":"Alfredo
+ Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE
+ ENGINEER","lastDirSyncTime":"2020-09-03T10:09:01Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo
+ Santamaria Gomez,OU=MSE,OU=Users,OU=CoreIdentity,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange
+ Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo
+ Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo
+ San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo
+ Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange
+ Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo
+ Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2020-08-01T20:12:10Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria
+ Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P84536","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"84536","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:
+ - '17717'
+ content-type:
+ - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
+ dataserviceversion:
+ - 3.0;
+ date:
+ - Wed, 09 Sep 2020 04:51:59 GMT
+ duration:
+ - '1052416'
+ expires:
+ - '-1'
+ ocp-aad-diagnostics-server-name:
+ - +pxYfTimt0+9cgpiOAtGp0JRJz5yxX63UiVVhp43BXY=
+ ocp-aad-session-key:
+ - AUJy65TNyV1l4gKVX8fBdcMdLkwVRIkuqxYMX0un-n0CagjzTYzKs7T4XcQWop3S25mLi9W1jXOS8ytXOrrLAPP5cc1woqszi_sbtNS_o3lQv02SPJosOro4ig0LBQoX.e5s3uF1ZLCmmuiiq6bL70GfUoK-Q7vx_qyuGf45FgQo
+ pragma:
+ - no-cache
+ request-id:
+ - bdc983e4-bb9b-4b16-aa9b-d65ac3e1b4d9
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-ms-dirapi-data-contract-version:
+ - '1.6'
+ x-ms-resource-unit:
+ - '1'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "southcentralus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
+ "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId":
+ "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "3307ff37-85af-4550-bc6a-d1e02672cb7c",
+ "permissions": {"keys": ["get", "create", "delete", "list", "update", "import",
+ "backup", "restore", "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, "softDeleteRetentionInDays":
+ 90, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow", "ipRules":
+ [], "virtualNetworkRules": []}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - keyvault create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '967'
+ 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.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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-000004?api-version=2019-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004","name":"sfrp-cli-kv-000004","type":"Microsoft.KeyVault/vaults","location":"southcentralus","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000004.vault.azure.net","provisioningState":"RegisteringDns"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1204'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:00 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.31.0
+ 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.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004?api-version=2019-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004","name":"sfrp-cli-kv-000004","type":"Microsoft.KeyVault/vaults","location":"southcentralus","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000004.vault.azure.net/","provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1200'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:31 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.31.0
+ 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.9 msrest_azure/0.6.3 azure-keyvault/7.0
+ Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: POST
+ uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/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, 09 Sep 2020 04:52:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ www-authenticate:
+ - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
+ resource="https://vault.azure.net"
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - southcentralus
+ x-ms-keyvault-service-version:
+ - 1.1.60.0
+ 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.9 msrest_azure/0.6.3 azure-keyvault/7.0
+ Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: POST
+ uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/create?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","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":"b6e5959a84c349e78ebbb0de6d38cc3c"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:34 GMT
+ expires:
+ - '-1'
+ location:
+ - https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0&request_id=b6e5959a84c349e78ebbb0de6d38cc3c
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - southcentralus
+ x-ms-keyvault-service-version:
+ - 1.1.60.0
+ 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.9 msrest_azure/0.6.3 azure-keyvault/7.0
+ Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","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":"b6e5959a84c349e78ebbb0de6d38cc3c"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - southcentralus
+ x-ms-keyvault-service-version:
+ - 1.1.60.0
+ 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.9 msrest_azure/0.6.3 azure-keyvault/7.0
+ Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","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":"b6e5959a84c349e78ebbb0de6d38cc3c"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - southcentralus
+ x-ms-keyvault-service-version:
+ - 1.1.60.0
+ 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.9 msrest_azure/0.6.3 azure-keyvault/7.0
+ Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBbjaYIE9MYyc5vlyT/oR5pgXgnsjWJI0uz6/HrrehTbj9PGFnS7QC506BtUSgAbBHts6ilgo11BBCEbBFkrABniYECsAdM6jnbmGen8cGYG/0cJ5A2RGU5bSWO2fBQcnQT3j5UG4MIbYvygLJnhqcR3i1T5d7DC/S3Z9IE8SufzwNbzPBhqcXxdlEhcJQrXiNsfqcj1ylRC/1n2AYp/TcSDwnDjsJTgnhn/8qHJSiwFmMv3v3KDIgA/SnkzYC2TCalNlwQjDVv5F6ZFUV9tUhmN9F3aOLkiQwPFOCZGFv1Vw0guey7WBdkbtCtRRf7NJoIONqD+2ZJnPBOEBJBtJPz","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005","request_id":"b6e5959a84c349e78ebbb0de6d38cc3c"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1255'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - southcentralus
+ x-ms-keyvault-service-version:
+ - 1.1.60.0
+ 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.9 msrest_azure/0.6.3 azure-keyvault/7.0
+ Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e","kid":"https://sfrp-cli-kv-000004.vault.azure.net/keys/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e","sid":"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e","x5t":"T_ipY90nW9FXd6yCkYXyQ9k_yXw","cer":"MIIDQjCCAiqgAwIBAgIQPkMqt2cDQX20Yfn+HapWnDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDkwOTA0NDI0NloXDTIxMDkwOTA0NTI0NlowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIvIN3LXhl7FFeBmR6DoFPyaO2y9zMcexu7NW1OABCg5PL9oiv/4Kk3jviO6M4mIxAV7hGWZ3T31T3fdxiYrt4QzEsCXWzjP0x07G44IZ4AjgWhlHSiBXWi22F8L6ep8aoiPzTaLYMEfxSRipzLkrJy0RnbKBjbH/gxDnnfDjaybFGQgU0rvq1SOJNJ6sH8SQbzCej1CT5Q67ZsIhElTTQRaPZ5mTAyo+Bs8j3tjfan9CR11V3up9P4HlP1I0Yk/Nq9fU5RG6pzJTNUXTOlVcORC/xUUtDaK90f2LpqNiVr2OcE9en1KlXECW7qPv/bxz//i7vu1TSZhvDdeZyNnmfECAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFNC6k4Q1I/5jhkQ/fjJ9IuXc5W9IMB0GA1UdDgQWBBTQupOENSP+Y4ZEP34yfSLl3OVvSDANBgkqhkiG9w0BAQsFAAOCAQEABjBHNbPSzdZ3j/wsm0Mu6SDk6fU/bb6AX/zqbEgs+Q5kF/6i2SjamCp6tQCK0YcP+Jw3Cw60oT6BQ4so+PkDFR0N95MErt/6s5jNcROSedda98U6iYvOMUS+5M2vvMwjaLRsx5rcpvoPKXc+8p7qyBK2c0nBrrBLoXdE7hgKV5/wFUocBE2sLK9t6EkMLalLGHhntNU4ilZX5rEXnYUiprzdNcv9Xwt/MKzUSZ2n6q6mIvDmdYGNB7eUQpQfyk7nvlf7ugwZntD2X+a3D+AUDx3ecM+TxPhrRtQ6r+9jcP9eFJ+E1dcdpqyKl/5Y3KXNc+nPIkolobcNJtP9rpFyDg==","attributes":{"enabled":true,"nbf":1599626566,"exp":1631163166,"created":1599627166,"updated":1599627166,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/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":1599627154,"updated":1599627154}},"pending":{"id":"https://sfrp-cli-kv-000004.vault.azure.net/certificates/sfrp-cli-000005/pending"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.159.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - southcentralus
+ x-ms-keyvault-service-version:
+ - 1.1.60.0
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmExtensions\": [\r\n {\r\n \"name\":
+ \"csetest\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1034'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: 'b''{"tags": {}, "properties": {"isPrimary": true, "vmInstanceCount": 5,
+ "dataDiskSizeGB": 100, "placementProperties": {}, "capacities": {}, "vmSize":
+ "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer", "vmImageOffer":
+ "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion": "latest",
+ "vmSecrets": [{"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004"},
+ "vaultCertificates": [{"certificateUrl": "https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e",
+ "certificateStore": "my"}]}], "vmExtensions": [{"name": "csetest", "properties":
+ {"publisher": "Microsoft.Compute", "type": "BGInfo", "typeHandlerVersion": "2.1",
+ "autoUpgradeMinorVersion": true}}]}}'''
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '905'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Updating\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmSecrets\": [\r\n {\r\n \"sourceVault\":
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004\"\r\n
+ \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\":
+ \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e\",\r\n
+ \ \"certificateStore\": \"my\"\r\n }\r\n ]\r\n }\r\n
+ \ ],\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n
+ \ \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1596'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:52:57 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\":
+ \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:53:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\":
+ \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:53:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\":
+ \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:54:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\":
+ \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:54:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/3ca70003-a1b0-4cad-a32c-8c298edc3572?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"3ca70003-a1b0-4cad-a32c-8c298edc3572\",\r\n \"startTime\":
+ \"2020-09-09T04:52:57.8353612Z\",\r\n \"endTime\": \"2020-09-09T04:55:29.3284572Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:55:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type vm-secret add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --source-vault-id --certificate-url --certificate-store
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmSecrets\": [\r\n {\r\n \"sourceVault\":
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004\"\r\n
+ \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\":
+ \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e\",\r\n
+ \ \"certificateStore\": \"my\"\r\n }\r\n ]\r\n }\r\n
+ \ ],\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n
+ \ \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1597'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:55:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {},\r\n \"vmSecrets\": [\r\n {\r\n \"sourceVault\":
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000004\"\r\n
+ \ },\r\n \"vaultCertificates\": [\r\n {\r\n \"certificateUrl\":
+ \"https://sfrp-cli-kv-000004.vault.azure.net/secrets/sfrp-cli-000005/2d1ebd10db374796a91fd9213f1ce29e\",\r\n
+ \ \"certificateStore\": \"my\"\r\n }\r\n ]\r\n }\r\n
+ \ ],\r\n \"vmExtensions\": [\r\n {\r\n \"name\": \"csetest\",\r\n
+ \ \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n
+ \ \"type\": \"BGInfo\",\r\n \"typeHandlerVersion\": \"2.1\",\r\n
+ \ \"autoUpgradeMinorVersion\": true\r\n }\r\n }\r\n ]\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1597'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:55:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1092'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:55:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "southcentralus", "tags": {}, "properties": {"dnsName": "sfrp-cli-000002",
+ "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName":
+ "vmadmin", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"},
+ {"isAdmin": false, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB7777"}],
+ "clusterCodeVersion": "7.1.458.9590"}, "sku": {"name": "Basic"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '424'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\":
+ \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\":
+ \"Updating\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1203'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:55:30 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:56:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:56:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:57:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:57:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:58:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:58:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:59:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:59:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:00:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:00:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:01:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:01:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:02:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:02:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:03:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:03:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:04:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:04:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:05:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:05:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:06:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:06:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:07:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:07:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:08:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:08:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:09:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/55870003-9357-4071-9bfa-0ebd4cce9536?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"55870003-9357-4071-9bfa-0ebd4cce9536\",\r\n \"startTime\":
+ \"2020-09-09T04:55:31.1878908Z\",\r\n \"endTime\": \"2020-09-09T05:09:27.9943724Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:09:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\":
+ \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\":
+ \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1204'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:09:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\":
+ \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\":
+ \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1204'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:09:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ },\r\n {\r\n \"isAdmin\": false,\r\n \"thumbprint\":
+ \"123BDACDCDFB2C7B250192C6078E47D1E1DB7777\"\r\n }\r\n ],\r\n \"provisioningState\":
+ \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1204'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:09:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "southcentralus", "tags": {}, "properties": {"dnsName": "sfrp-cli-000002",
+ "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName":
+ "vmadmin", "clients": [{"isAdmin": true, "thumbprint": "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}],
+ "clusterCodeVersion": "7.1.458.9590"}, "sku": {"name": "Basic"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '346'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1091'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:09:36 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:10:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:10:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:11:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:11:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:12:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:12:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:13:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:13:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:14:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:14:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:15:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:15:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:16:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:16:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:17:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:17:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:18:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:18:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 10.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:19:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:19:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:20:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:20:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/8e650003-d3ff-4abc-b0c4-547c3c6ef397?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"8e650003-d3ff-4abc-b0c4-547c3c6ef397\",\r\n \"startTime\":
+ \"2020-09-09T05:09:37.5578297Z\",\r\n \"endTime\": \"2020-09-09T05:21:10.0798786Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:21:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster client-certificate delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1092'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:21:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterState\":
+ \"Ready\",\r\n \"clusterCodeVersion\": \"7.1.458.9590\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1092'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:21:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b1947618-010f-48b0-b883-85ab8c45128e\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"AB57AEA1A3EEC6D3219FFDCC09A92DA705BC86F1\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1018'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:21:11 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:21:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:22:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:22:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:23:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:23:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:24:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:24:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:25:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:25:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:26:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:26:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/0bb90003-575e-4322-ab39-eab9551980b3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"0bb90003-575e-4322-ab39-eab9551980b3\",\r\n \"startTime\":
+ \"2020-09-09T05:21:12.5799528Z\",\r\n \"endTime\": \"2020-09-09T05:27:13.6090611Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 05:27:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Wed, 09 Sep 2020 05:27:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ 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_cluster_certs.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cluster_certs.yaml
index c4301fd2a3e..58f9f109b07 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cluster_certs.yaml
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_cluster_certs.yaml
@@ -1,65 +1,77 @@
interactions:
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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":"181c08fa-7ac8-48a6-a869-342ab74566a4","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[],"assignedPlans":[],"city":null,"companyName":null,"consentProvidedForMinor":null,"country":null,"createdDateTime":"2020-07-01T06:20:59Z","creationType":null,"department":null,"dirSyncEnabled":null,"displayName":"azureclitest","employeeId":null,"facsimileTelephoneNumber":null,"givenName":null,"immutableId":null,"isCompromised":null,"jobTitle":null,"lastDirSyncTime":null,"legalAgeGroupClassification":null,"mail":null,"mailNickname":"azureclitest","mobile":null,"onPremisesDistinguishedName":null,"onPremisesSecurityIdentifier":null,"otherMails":[],"passwordPolicies":null,"passwordProfile":null,"physicalDeliveryOfficeName":null,"postalCode":null,"preferredLanguage":"en-US","provisionedPlans":[],"provisioningErrors":[],"proxyAddresses":[],"refreshTokensValidFromDateTime":"2020-07-01T06:23:57Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":null,"state":null,"streetAddress":null,"surname":null,"telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/181c08fa-7ac8-48a6-a869-342ab74566a4/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":null,"userIdentities":[],"userPrincipalName":"azureclitest@azuresdkteam.onmicrosoft.com","userState":null,"userStateChangedOn":null,"userType":"Member"}'
- headers:
- access-control-allow-origin:
- - '*'
- cache-control:
- - no-cache
- content-length:
- - '1567'
- content-type:
- - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
- dataserviceversion:
- - 3.0;
- date:
- - Thu, 09 Jul 2020 09:29:22 GMT
- duration:
- - '2572100'
- expires:
- - '-1'
- ocp-aad-diagnostics-server-name:
- - ioV00GD0iCnKAf4rbBF9BaSdqytXkAsz7MJFOipZ4QY=
- ocp-aad-session-key:
- - c_6HuQrFbxWtKYmMTJ1Ti3tICMmhlWUer72IQ0MCRcmc3Rd5J_Ci8ocCIUHmRfNv1tIm0Ks4qISA-lfIKFKmqCW7-U4wCPcOT-rVR5Dy7qsIKd2AgZ_pVtj0FHLBkCB1.k7AHeuELDhoYIdRmUJnyvP-jvE5-KajYy0ISHm_oo7s
- pragma:
- - no-cache
- request-id:
- - 68dce37c-9607-42dc-b8b6-8ad9f78f1d1e
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-aad-resource-unit:
- - '1'
- 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": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a",
+- 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.9 msrest_azure/0.6.3 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":["ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","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":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-19T07:15:02Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2020-08-14T17:03:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2020-08-08T07:34:55Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T09:13:42Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"MICROSOFT","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Containers-BBURNS-OPEX-1010","dirSyncEnabled":true,"displayName":"Alfredo
+ Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE
+ ENGINEER","lastDirSyncTime":"2020-09-03T10:09:01Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo
+ Santamaria Gomez,OU=MSE,OU=Users,OU=CoreIdentity,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange
+ Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo
+ Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo
+ San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo
+ Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange
+ Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo
+ Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2020-08-01T20:12:10Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria
+ Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P84536","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"84536","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:
+ - '17717'
+ content-type:
+ - application/json; odata=minimalmetadata; streaming=true; charset=utf-8
+ dataserviceversion:
+ - 3.0;
+ date:
+ - Tue, 08 Sep 2020 20:27:48 GMT
+ duration:
+ - '1057982'
+ expires:
+ - '-1'
+ ocp-aad-diagnostics-server-name:
+ - DCwgcMwuvn5dT/ucjNeznetw31cm4TxBRx0ZUowtuLE=
+ ocp-aad-session-key:
+ - Lb1BmmMaPLk5Cx6XlnFu7A5i8-w5A8Ix6BTyv0zqnhdxgMxZq1dFKV25nPkgjmSMmpy8NcsMekGHRW168UsdBFn7lhG6CN3hJVLP0MlIH9um57dDLnprymf0JylmL_Ix.szmd6NN0jNr2RIE4OG9GiU0fCGbyUOQi9yp-RXLbLqE
+ pragma:
+ - no-cache
+ request-id:
+ - 5c776d03-13f5-4b9e-98cc-91e75ee6e800
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-ms-dirapi-data-contract-version:
+ - '1.6'
+ x-ms-resource-unit:
+ - '1'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
"sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId":
- "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "181c08fa-7ac8-48a6-a869-342ab74566a4",
+ "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",
@@ -69,689 +81,689 @@ interactions:
"enabledForDeployment": true, "enabledForTemplateDeployment": true, "softDeleteRetentionInDays":
90, "networkAcls": {"bypass": "AzureServices", "defaultAction": "Allow", "ipRules":
[], "virtualNetworkRules": []}}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - keyvault create
- Connection:
- - keep-alive
- Content-Length:
- - '959'
- Content-Type:
- - application/json; charset=utf-8
- ParameterSetName:
- - --resource-group -n -l --enabled-for-deployment --enabled-for-template-deployment
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1196'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:29:30 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.283
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1192'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:01 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.283
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - keyvault create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '959'
+ 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.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net","provisioningState":"RegisteringDns"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1196'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:01 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.31.0
+ 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.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1192'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:32 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.31.0
+ 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.9 msrest_azure/0.6.3 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:
- - Thu, 09 Jul 2020 09:30:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- www-authenticate:
- - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a",
- resource="https://vault.azure.net"
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- x-powered-by:
- - ASP.NET
- status:
- code: 401
- message: Unauthorized
- - request:
- body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size":
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '87'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ www-authenticate:
+ - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
+ resource="https://vault.azure.net"
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCxcI9Rg+mfHEy3xqmwG7GQvJMg2MUBGSg0hIjv60d74T4wGeJEsLm/6D99drbBVAt4eAyQ109wJ6BzzK4e4wF7WGov89RNj+VObiPoGSIX45iLHs23kMumBxlHRQ9vZeIFLU7ftnZoN2erPiYORkrU8NpPID5st/yi2oiGXW/PmcadCPWvH6GKdOTd51k5EQXBxp96YjXCHpRoRIwgTH2jZmb/dY25mxR1/6R+3APIFntxSbTs8Tal4i8sBxE2RFK8Y/hcPA2TK+jGpAkPqxfGLWM3axFtoo99BngLiJqDlxOv3qpRDSZO7rt9zTeetDxZLTHk0f1mkbk/jxTFU+Jy","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ 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.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQB76UIXeEnH0JCvY+d3sjXV7NsaYVUFZKG6QmU1xdCC7898JxDy+9IGupSZHeQrfJbXgzlqw7g9ZLkdLUm1k0kXAbNhN/3GHOCEGTbGzBUEEFOrpXOd7Pi90rxjZpkkgItbj1rU05fg78TX3jyYWGf65di3Br5sViPPUp7Pgh9JgKuSRoZbaIiAHj882e/D3JcpEZDgJVCRewNGLHBEZcAA9QjOUkTkgRY0TtiIxY2UCsyF6uGo+uEI3lR5S5RbWkkMmzjtBzQTajdzNKlkNheVODfbASt1mifkNoPCk8dreIlEviyDPcvF72YzBdp4yvckTbgn2tc+NKo57gg/gAEP","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":"1cc92ea5e06c46a2a387b7a8d61eb5f4"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:07 GMT
- expires:
- - '-1'
- location:
- - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=1cc92ea5e06c46a2a387b7a8d61eb5f4
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCxcI9Rg+mfHEy3xqmwG7GQvJMg2MUBGSg0hIjv60d74T4wGeJEsLm/6D99drbBVAt4eAyQ109wJ6BzzK4e4wF7WGov89RNj+VObiPoGSIX45iLHs23kMumBxlHRQ9vZeIFLU7ftnZoN2erPiYORkrU8NpPID5st/yi2oiGXW/PmcadCPWvH6GKdOTd51k5EQXBxp96YjXCHpRoRIwgTH2jZmb/dY25mxR1/6R+3APIFntxSbTs8Tal4i8sBxE2RFK8Y/hcPA2TK+jGpAkPqxfGLWM3axFtoo99BngLiJqDlxOv3qpRDSZO7rt9zTeetDxZLTHk0f1mkbk/jxTFU+Jy","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ time based on the issuer provider. Please check again later.","request_id":"cf22543775f24b1bbeacfaf0719b0f0e"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:35 GMT
+ expires:
+ - '-1'
+ location:
+ - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=cf22543775f24b1bbeacfaf0719b0f0e
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQB76UIXeEnH0JCvY+d3sjXV7NsaYVUFZKG6QmU1xdCC7898JxDy+9IGupSZHeQrfJbXgzlqw7g9ZLkdLUm1k0kXAbNhN/3GHOCEGTbGzBUEEFOrpXOd7Pi90rxjZpkkgItbj1rU05fg78TX3jyYWGf65di3Br5sViPPUp7Pgh9JgKuSRoZbaIiAHj882e/D3JcpEZDgJVCRewNGLHBEZcAA9QjOUkTkgRY0TtiIxY2UCsyF6uGo+uEI3lR5S5RbWkkMmzjtBzQTajdzNKlkNheVODfbASt1mifkNoPCk8dreIlEviyDPcvF72YzBdp4yvckTbgn2tc+NKo57gg/gAEP","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":"1cc92ea5e06c46a2a387b7a8d61eb5f4"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCxcI9Rg+mfHEy3xqmwG7GQvJMg2MUBGSg0hIjv60d74T4wGeJEsLm/6D99drbBVAt4eAyQ109wJ6BzzK4e4wF7WGov89RNj+VObiPoGSIX45iLHs23kMumBxlHRQ9vZeIFLU7ftnZoN2erPiYORkrU8NpPID5st/yi2oiGXW/PmcadCPWvH6GKdOTd51k5EQXBxp96YjXCHpRoRIwgTH2jZmb/dY25mxR1/6R+3APIFntxSbTs8Tal4i8sBxE2RFK8Y/hcPA2TK+jGpAkPqxfGLWM3axFtoo99BngLiJqDlxOv3qpRDSZO7rt9zTeetDxZLTHk0f1mkbk/jxTFU+Jy","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ time based on the issuer provider. Please check again later.","request_id":"cf22543775f24b1bbeacfaf0719b0f0e"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQB76UIXeEnH0JCvY+d3sjXV7NsaYVUFZKG6QmU1xdCC7898JxDy+9IGupSZHeQrfJbXgzlqw7g9ZLkdLUm1k0kXAbNhN/3GHOCEGTbGzBUEEFOrpXOd7Pi90rxjZpkkgItbj1rU05fg78TX3jyYWGf65di3Br5sViPPUp7Pgh9JgKuSRoZbaIiAHj882e/D3JcpEZDgJVCRewNGLHBEZcAA9QjOUkTkgRY0TtiIxY2UCsyF6uGo+uEI3lR5S5RbWkkMmzjtBzQTajdzNKlkNheVODfbASt1mifkNoPCk8dreIlEviyDPcvF72YzBdp4yvckTbgn2tc+NKo57gg/gAEP","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":"1cc92ea5e06c46a2a387b7a8d61eb5f4"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCxcI9Rg+mfHEy3xqmwG7GQvJMg2MUBGSg0hIjv60d74T4wGeJEsLm/6D99drbBVAt4eAyQ109wJ6BzzK4e4wF7WGov89RNj+VObiPoGSIX45iLHs23kMumBxlHRQ9vZeIFLU7ftnZoN2erPiYORkrU8NpPID5st/yi2oiGXW/PmcadCPWvH6GKdOTd51k5EQXBxp96YjXCHpRoRIwgTH2jZmb/dY25mxR1/6R+3APIFntxSbTs8Tal4i8sBxE2RFK8Y/hcPA2TK+jGpAkPqxfGLWM3axFtoo99BngLiJqDlxOv3qpRDSZO7rt9zTeetDxZLTHk0f1mkbk/jxTFU+Jy","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"1cc92ea5e06c46a2a387b7a8d61eb5f4"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1255'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:31 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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/c159a9d73ae94574ac8a559c032d75fb","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","x5t":"OB6VB5xZCwz1Ge_qJYNfgyx7AcQ","cer":"MIIDQjCCAiqgAwIBAgIQRb6ip4DbTSu9vBIaAe3dJjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDcwOTA5MjAxOVoXDTIxMDcwOTA5MzAxOVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFCVLvwon3Z9OA+zcCos4CTVZRNdEMB0GA1UdDgQWBBQlS78KJ92fTgPs3AqLOAk1WUTXRDANBgkqhkiG9w0BAQsFAAOCAQEAI0kdOeLIq36J1aVjkglivrNdaF828s+o69h1ErClZIiYYGHSCifgMSBA/9sF9U5PnNaJZ4DlyyhpotP0ivJPlTL4HGOrOiJqE1gFyU4gvzsHw8pmXtI++ifiMAOr9U6pmcq/1LCWVMmlbRcconre3A3oMMgeHmmRdw63M0DobeLakJ+btNI04rLjna1jbl7q/yK9NekPOxePwc+j2XfMwyyOvu8J098rHmhp9C2SWJ2Rcg43PHSmiu0x1d2x571QeImgR9tIbP1NwCk46gM4jgdXXKhikGkI6WzLOTvhE9b9DwmH4DomzP8kAs3hfP4caW6LIRSZdRtyN8izZvpfZQ==","attributes":{"enabled":true,"nbf":1594286419,"exp":1625823019,"created":1594287020,"updated":1594287020,"recoveryLevel":"Recoverable+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":1594287006,"updated":1594287006}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2494'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:32 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-07-09T09:29:18Z"},"properties":{"provisioningState":"Succeeded"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '428'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-07-09T09:29:18Z"},"properties":{"provisioningState":"Succeeded"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '428'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:34 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- 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/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5","name":"bim-kv5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5555","name":"bim-kv5555","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv55555","name":"bim-kv55555","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555565","name":"bim-kv555565","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555575","name":"bim-kv555575","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555585","name":"bim-kv555585","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555595","name":"bim-kv555595","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv6666","name":"bim-kv6666","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv8","name":"bim-kv8","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0528","name":"bim-kv-0528","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0529","name":"bim-kv-0529","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0529-2","name":"bim-kv-0529-2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0701","name":"bim-kv-0701","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-111111","name":"bim-kv-111111","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-20200508","name":"bim-kv-20200508","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-20200528","name":"bim-kv-20200528","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-666","name":"bim-kv-666","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test1","name":"bim-sd-test1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test2","name":"bim-sd-test2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test3","name":"bim-sd-test3","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test4","name":"bim-sd-test4","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0506","name":"bimkv0506","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv05062","name":"bimkv05062","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0519","name":"bimkv0519","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0519-3","name":"bimkv0519-3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0703","name":"bimkv0703","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv20200418","name":"bimkv20200418","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue1","name":"bimkvissue1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue12","name":"bimkvissue12","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue13","name":"bimkvissue13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue2","name":"bimkvissue2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue3","name":"bimkvissue3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue4","name":"bimkvissue4","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue5","name":"bimkvissue5","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue6","name":"bimkvissue6","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue7","name":"bimkvissue7","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue8","name":"bimkvissue8","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvrbac1","name":"bimkvrbac1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd1","name":"bimkvsd1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd2","name":"bimkvsd2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd3","name":"bimkvsd3","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd5","name":"bimkvsd5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd6","name":"bimkvsd6","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvTest","name":"bimkvTest","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvtest20200513","name":"bimkvtest20200513","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtrack2test","name":"bimtrack2test","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtrack2test2","name":"bimtrack2test2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test","name":"bimkv-nr-test","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test2","name":"bimkv-nr-test2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test3","name":"bimkv-nr-test3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimplkv","name":"bimplkv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6cwdp2ylgrk6euk2o3awkvbjbhczlt27nncgh76is6sknrsx62b76rmyej3i6gld/providers/Microsoft.KeyVault/vaults/clitestrgp6cwdp2ylgrk","name":"clitestrgp6cwdp2ylgrk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0227","name":"jlkv0227","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0309","name":"jlkv0309","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgbee277050cc78/providers/Microsoft.KeyVault/vaults/vault231905656","name":"vault231905656","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9393","name":"zhoxingtest9393","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9ac53638","name":"zhoxingtest9ac53638","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}}]}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '14098'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:34 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1192'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:36 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.283
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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/c159a9d73ae94574ac8a559c032d75fb?api-version=7.0
- response:
- body:
- string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAg/D4DfM1b3ZgICB9AEggTYfz9Ic4xpIzdkLnTAyBnl5H2npefKa7xEk74/UgY47Y2NhlYbK/ZCpNFYm+ZGUodBM6Kj6m3Q9C+k/6Er3Lt2odl4Es/dEc6ldHNEhNxJG7jd0O6MZdKV68PO05XpNsWwwsU2K9d1jF1714DR9b6I/VGwoa0nbY73ayn32jgnIlVbozvbAbEWiWm7c6pCsZiLEBb4H/R4flLx8UFFVdpDCFyeeSNeCAHKAmEqlKIiSAxQYbJOTIVUBuyrO49GChHi7LJSCZxCPtXLEpoAB8E+fLwQGwlI+Gysixay4Naa0iJXyrq4Lsoc2eKMkdleR2gSmXY5LmiKllBxNg6FnkIOq51rq9gysbqXY4/mwsPbdWPbHqJeLVIjpJKDLLtkhvvsiNmSk0yV/v6MT7FV22JbJRaVckgKs5FnAlCnlXHE0ixnAHN4hTi+b8oFErBgGrDTqD9uLXAugrMdNn8rCqXTHy0+0G3TB6dJkWTO/tX5aFT3LSGizZkP+HWbTYhK/+Cz8pUv3yfe+8AenIDPpamsxdV2w/UIfTUSqIeeC3ii/ZtQMyT/Bld4G/3t782SwrN+2A9AjF5NDYuCPnmzxyjGbe5DBv6ZIW4AW0bOomhZzVTRfy01mDR4yDGT/N2teM4KuuOOBClTrtLjpm1HmqiJexx3O39FSDGm0YbodM7J3VPbC+6S1Y7NkrJZrwx3hQDtL6wFK7LOO5eX/nKhV162TbKU7Y7VHm0PNEUX3YCpiGcfAw1C3a/3Y1VltN1FKyX60N7pzmbpv9iT/JAELb2y3a+VdPqQUvJn/nDHTG1rwR4uyy7F9XQ10Ewdceq+1U6kxQPCu67BA1Ju2NdrsuConKRIW6V6xWcqr3FtrkX6S23Mly+Aq9MkQXWVjzgU4490ajR0Xs7+oc5xPcf1KY10rOnk9j6ZR5iXCv2QrPeXqAGTtH0Mv+Kq3kw4CflWfyHNUvLiDrpmA5sB9On7QCpqWwW8TRyL2FkANmQUBPnZ2bNXFSCQenekbmMoAxPPwwDfZSsOy+LD+EwMvVvoN3VfYPn2/C9KgseS8lPth6tlHmO4Nrb5r2rpCMB2J/D6ROEfYfOdNjug4WvCm0lp+3EpeV7IUjUw9jJMBsk4F+NepWbhCe2PKoFCw5P/KntLEHs92hh0SeKArLnBGdNo4fnoav1I4KoBWsrc7YkckWdRXtR/txT8Qediu4A5y+NQ4shCwtfMFSb82jyqvtxCrPCZCvC8lmiU+NBlIJzBR4T1l/UmCe35kY0Q1w0qitbubBeaZNVhKEnk5VEk/BxK3VtX4Y/Y7mLcUzmDBo7lKVXcGuKUSm6+n/84tJeMIfJDwhT9BJOtnV9xsx8/Q/dQB2kvth2R4+CPcgqTkteGk4ORafnULDXap/2q2TIWVQvcgE2Txk1d764fYlsYJiXQsiqK9fZioFDNyu0aPS4KNzud0W6USFjxIDYpNhWdh85lP4HJ9vZmeoZBwMNSlyHs85SvazTgSKOqbnl9zHaFbrzWtBoFfpujA/GwL84kCgYIUnWSyQzm1S2t0kcxlyIqR4fml/FB5KHdRrgbvAE1eZCwY/zA6f/OB4XwNxvixdeKNwTlP9PKJNyypjZXhDMFVSetoxGewAOUQDmHIDE2T7InRcDU15yWLnzaVjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADUANwAwAGYAZgA3AGIAMQAtADIANAAyAGEALQA0ADAAYgAwAC0AYQAwADIAZgAtADQAMgA5ADUAOQBjAGUAOQBlADQANgBkMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAi1G2Mhf/4COgICB9CAggOQhtINW1TALGQQJEmOs2NmzkPG+0qIO3q8tJPTAfE+TNZuY2iLXqL1XcnviINHOyf0gTBxFdF5FDJ0ANRv1ftME+zvwdJpZJsbtuuUppN17D0NmsbHRp5gtNHY3rxayibdYzhJcX3ZaPnGvlmNzjVhs4mpb2Utk6Yq2uyKf6wUfAMxjALYADvvROs6NDqTB1HfCYAu/K3OQ7qd8r3jI4l37/1GbJCL2mn9WxKPOxiAqq0ptS4GNE3mGkZHG57KXd/kA9shGs6vJjlZ4GwoxhmKsxQXaKC0F5UwmKbLa/gJl5DE4rQLkPn41VxXZsOEnVZHuo25Ewff7EU7GefOUkny5d3058zpcwiqjpa/L6pt2RIKJbcrTHJwukWx9t8rrlnksdQsiMnzireJlvIaJAWN6KHL0D5eXhj/iFTcZaHKUWgpfrJB3Qqep5G6X4lzK0Dn/mbDOaE/DlrnNIiCBttfeeFCb7HCJN/Xw6QMJ04C3Nj3GvV5BF1prlcIYqkXhJfSvf5DNVr4IesLwR/XQHSRUVa41YpurxIJoTzHZtEW6v/ZQUzMT88+rr+oFJ6rkKY9tKz6Xc/WR2WEIBfzGtW24M08o7rsaJqieiNuzyBzRdsSPmguRny33ErYe+wX3XcSU7DSlkIdyD1ipCZ4l4NYdkAL5Iv/k6b7GLcgFUU5RYRGVW/UDnVEjYQiEuN+7Ltj16b9EnpE25F4WVojTDRdOztkTNu092ngy0nzsqVsts39Siz0QYVu1e8nxJKubonJmDoax/JiPhKxMkJVUurDfr7wvjWsGOg4MoLUxk0tEi2xCZrO7VUfV8UcyCZEdciP80jscRJU6KCbFpEYVBtU6fI3kTv0FGTUQgIeQTJATWT3gV/Qf8Gr7fFX62qvYP3WYcwA9Wefupou/EoFegBBcSAIvbpozu6u4MUubfJAaL/wOjmLaNkAMtkpAEFLm9f+/w0Zsa5CTzuEV9oHFf/p0Aw/5AJEee2k9URQfq9eY6zhyHIKVLrOegZkF/08mAZ13l/8qO6gFnSqNHRQUVaGEHASrQuiU9HlEw6zxNzMpAUFZsQt2CeNP3dP4YlSUTXRUMlkKu4CqzigrpEEUjD8vxnIe9dtloRocWBhFuLITgF4LOC2laON5/tI6oUhne2N7N8s897nPkVfW/EpmDN/W63ysk23KhZNYYUQ7J4EEZHcF2IYJKne1ihUXd63DUiMMDcwHzAHBgUrDgMCGgQUeYqRPIt0WQPH48p2SAXvvkXd4i8EFGM2FM6vGAV1WB2l8bCGcXbSJ7D/","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","managed":true,"attributes":{"enabled":true,"nbf":1594286419,"exp":1625823019,"created":1594287020,"updated":1594287020,"recoveryLevel":"Recoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3972'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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",
+ time based on the issuer provider. Please check again later.","request_id":"cf22543775f24b1bbeacfaf0719b0f0e"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQB76UIXeEnH0JCvY+d3sjXV7NsaYVUFZKG6QmU1xdCC7898JxDy+9IGupSZHeQrfJbXgzlqw7g9ZLkdLUm1k0kXAbNhN/3GHOCEGTbGzBUEEFOrpXOd7Pi90rxjZpkkgItbj1rU05fg78TX3jyYWGf65di3Br5sViPPUp7Pgh9JgKuSRoZbaIiAHj882e/D3JcpEZDgJVCRewNGLHBEZcAA9QjOUkTkgRY0TtiIxY2UCsyF6uGo+uEI3lR5S5RbWkkMmzjtBzQTajdzNKlkNheVODfbASt1mifkNoPCk8dreIlEviyDPcvF72YzBdp4yvckTbgn2tc+NKo57gg/gAEP","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"cf22543775f24b1bbeacfaf0719b0f0e"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1255'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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/ec36305784064c3185ff24acde44c685","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","x5t":"iTbkWPRzfSG43CVXzlSECZvkQNk","cer":"MIIDQjCCAiqgAwIBAgIQa2ygUE9mQ3iJ9lsB4g8xWjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDkwODIwMTg1MFoXDTIxMDkwODIwMjg1MFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFN4l4edqisHaWMLDdCH9MTOdJKnSMB0GA1UdDgQWBBTeJeHnaorB2ljCw3Qh/TEznSSp0jANBgkqhkiG9w0BAQsFAAOCAQEAsAwIMFL8LCG3/fPXbJQS1ZOKJGDI/fLQAcAsJtcoyBm8kg53Hp78EpXeDIF3DrxXCcXUWryjkoWAaAKEdrLbcmaKKKVzshwH9R3jYyrr2iBqUhkNgzE68w8b/PYstEr2y4p3j8hf8daTOFjcLzHT7uADL0HTQE9bNd3RY0toWcoSS+ZvRh4oyPKdbf0DluKdB4y2CeghNR1F674FXUc9crSed0ol53JSLZp7aAZZbRNCkrwGr4M/VT45uRhxJfiq218vCRUgwG8QHnBEnde7ln1mHMLvJJwbQ1i20HLYAmGTufYEPfPY20wzK+zAqhHtfkJ2l4mO6E8EOXq38HQIBQ==","attributes":{"enabled":true,"nbf":1599596330,"exp":1631132930,"created":1599596931,"updated":1599596931,"recoveryLevel":"Recoverable+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":1599596915,"updated":1599596915}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-08T20:27:46Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:28: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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-08T20:27:46Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:00 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.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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/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-4659502004092020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault465950200409","name":"KeyVault465950200409","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo-5630141306092020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault563014130609","name":"KeyVault563014130609","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo-8824072008092020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault882407200809","name":"KeyVault882407200809","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/rmsfe2etest30903231702/providers/Microsoft.KeyVault/vaults/rmsfe2etest30903231702","name":"rmsfe2etest30903231702","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30904103946/providers/Microsoft.KeyVault/vaults/rmsfe2etest30904103946","name":"rmsfe2etest30904103946","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30904224522/providers/Microsoft.KeyVault/vaults/rmsfe2etest30904224522","name":"rmsfe2etest30904224522","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30905104339/providers/Microsoft.KeyVault/vaults/rmsfe2etest30905104339","name":"rmsfe2etest30905104339","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30905232237/providers/Microsoft.KeyVault/vaults/rmsfe2etest30905232237","name":"rmsfe2etest30905232237","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30906103857/providers/Microsoft.KeyVault/vaults/rmsfe2etest30906103857","name":"rmsfe2etest30906103857","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30906223825/providers/Microsoft.KeyVault/vaults/rmsfe2etest30906223825","name":"rmsfe2etest30906223825","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30907104128/providers/Microsoft.KeyVault/vaults/rmsfe2etest30907104128","name":"rmsfe2etest30907104128","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30907223806/providers/Microsoft.KeyVault/vaults/rmsfe2etest30907223806","name":"rmsfe2etest30907223806","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30908104024/providers/Microsoft.KeyVault/vaults/rmsfe2etest30908104024","name":"rmsfe2etest30908104024","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40903231715/providers/Microsoft.KeyVault/vaults/rmsfe2etest40903231715","name":"rmsfe2etest40903231715","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40904104049/providers/Microsoft.KeyVault/vaults/rmsfe2etest40904104049","name":"rmsfe2etest40904104049","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40904224546/providers/Microsoft.KeyVault/vaults/rmsfe2etest40904224546","name":"rmsfe2etest40904224546","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40905104328/providers/Microsoft.KeyVault/vaults/rmsfe2etest40905104328","name":"rmsfe2etest40905104328","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40905231107/providers/Microsoft.KeyVault/vaults/rmsfe2etest40905231107","name":"rmsfe2etest40905231107","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40906223856/providers/Microsoft.KeyVault/vaults/rmsfe2etest40906223856","name":"rmsfe2etest40906223856","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40907104114/providers/Microsoft.KeyVault/vaults/rmsfe2etest40907104114","name":"rmsfe2etest40907104114","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40907223757/providers/Microsoft.KeyVault/vaults/rmsfe2etest40907223757","name":"rmsfe2etest40907223757","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40908104551/providers/Microsoft.KeyVault/vaults/rmsfe2etest40908104551","name":"rmsfe2etest40908104551","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6381'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:01 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.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1192'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:01 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.31.0
+ 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.9 msrest_azure/0.6.3 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/ec36305784064c3185ff24acde44c685?api-version=7.0
+ response:
+ body:
+ string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAh5YixkgMLZEQICB9AEggTQiILFKXmLLLhQSeJ9kwfy+Wpv78+a3zIwtiiozF+UMHaygqW34SeDny4BbC/ycx7GmnDmRnrLRtOM8+XmcPgWY089nxmbQDHcMO93iGwvz9eGtZxv9nnS6+neriTZnHGJDtvqVwimODB+SnqDxkJZhyb8R4qXRJWyZxRKP5d3ZAKdIIdr/PGW4Blo8LHWrezPv+6PfKJbxF4qLRLZVpyR6qXNNNV7L/Ak/z9s1X25CI22qa4ktVVoOZthDbPVQZW1QrQXbt5L2lb/b5EqZnMdWshxavmCBAp7cKnJsx7PKH+GhrsKAHbi5fKeBrHTxZhxdZJRNFBUebTfiaP/ZMSmkxmp1NEl08wDO9lGDadvhbhkry2s9R//BXRFDSwEU1HrdH0hI7u6mFVB0NFr7GouhKaYra+QuEPnyi7uc3Hzwk3/taLIoIrU0fP5l07AXpQ8828lZzhsnTv6jAJOq4j88j3ALZZeRY9x973KDSfApL8MTPEyYXEPx+jbOJoHpzd3vOj/FaRrgVtKFE4RQYiqpDdWvIlTeqOwhPmkeplHSATuVefJ0d+RbtvdlWfq8k/iaNmZia5Q30XeLWw/jgIB6gpaxmQzvcGlNhTbV6n5OrrquPJHmPZC/ExBbWwSlgFMCXAlNyft3BsuRY74XEaf0CvzXFeqS1WFWeMsmXnkkd0cbf9TFUqFxKdwVR2qwT0LZ3pf8Ihk7tNv+5C1dfR1bmxwp64rgMp5ABTlJ8rrbD5c/rFsYg0FlI+pV9rOwZStXGcU4bjJYcEqJHigI5XK/iL3zRdg2g0rqsS9rTYtL9lkR9lyM7pn6oHQR3Zn/TO8rCbKYbHuaxA93S8p3iCYEgzECHcRIg9mt3fkWkUn5FFOeOeBNA8hS6sYX4pYPhQTa9ef+8HhDQzgDzAG2zZHaY00fltOMrx1z7zPuVinaOfuxfwAN3YxMGCXekXbHs+noYTiLAUi1AjusHKpJeoqwLeYSzr9KHX2aNfFzwn3qilAS8+jSoAScibT1FjszS2ZvnNtyMussefzt/1pI05mFguE1ZmLTQGz9n3pq8wDE22uNpvykrVzamkc6xJ4qnyy8ZVf0Dy+dUthNxPKgk380P6WSdktZ8F/Ebm2LkDl9ufa9Sgj+Ov6+KDvWFPx8B5YGmarSaAdcQPmTCQ2J0uIbbE6JNuPxrTljtMJ0TztZn9nmN9q0qRbZzj2ihsqu743RQ2IIZOZprJ84k+qVatAGA8PWlf3pMqLY6QrxNojIMKNWDRZL9pDDSTMaaMRgD51hUcHzarckCJTguTGAoAJanwOsR04xMhEsSuXKobMJN0nQatauC4sCm5Yp0pipjrV9YJ/noVYkgYYx5EqCGz7jb7ajlKn2C/AncJCwzHv6J3HkLi9sv73hDi2InCray9eWIs1IyfRRNBaUrYWXtFmgs2nJmF0rhH2/xFnirN/57Qu3kujMTvLrTaih+XabJp/LtmxhENZMZUZlzokLWXeBT2iFRXvB+/2U4efNtcU853kT1w2VXuaLCHmZrNouaGoVwVHuIhkqDdhLtauOfqIh6bD6yrHroTHRorD58Q5cTODojDHQUHRFB5IQE2UsKuf21/lMeRuuehJ0NRLZvIms5xzl+NJGNz+LSnq18xW4nAxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSAAyADkAMgA4ADgAOQA5ADcALQBmAGQAZQBmAC0ANABkAGEANQAtADkANwBjADkALQA0AGEAZgA3ADAAOABjAGQAYQBiADgAZDB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQITVoFqIYKTGQCAgfQgIIDkKlu6W4oB2F2FYht1jkEh2ric3pNsbzurEkD8hEaFbeJqGXxbCHfNMxfXri+KCAD6YHif5vzFjVZ+w6OV7FuYDLb96DaNAtQWTCwH+d3WHvdClNRTukg6YxfIx0ioakLexc+we9IFADRJtmUW+1tVL65s6gD17g0tkHwPs2ImffrLkn7AKRcYEPYja+JoqLh/GyEsgIzWH0uYc6BfIwd15WD0kObCM8thH2GH8ujNpcdklcVuE4xrbg5WPA6EN+vtAsfU+HOjYM/rDrRkKnlmP0oKOcPOjE7WgA9DIve5aaFOWYUMTyfQr8wBm0oXv6PQlif5JENnV44sQ50EtAO48jmrCBinXIEqiP1+FCFRJE6NtwpMj3bMKd94V3Lvw5tO1CDy0RhaoChcUaTWviMSE5ZRFnqljzmzX/w2Uej6icjHDKnLhEyF2rhhmP4ZqHrufHzFp4QlbMhl8vyOAJ7gsy/zcrN7/r7qG0LfaMxNAaZMmeko0/aMPLt8pUBupz8Bic5M1EwjIETOQUV1Z175ONyATGWeGM5JpAv0+zqE+R3MnQ/dwMhh9QeBFQ5wEKzviIPzDvDWggJ1RSg64qhvy8HTR/jcC5htHF7UiFs4KmioDu2w/Nff6sWc0GALMiXuyVLWYaYKYn+X1ddqncRwqrOhEB82bPu7FzhoK/49mzFAi7HK/4Cic0by1pgNHSJmDSsX0h6aGvRIy1OTGnVTPTfY5aSGErTxyfHkwvAaMMVuuBQDN4ysoWaTJFKSVJV1cdmmkLDDz2hjebgUlqGu+TGxJFwz7r5SFZVbuiAZNuaMFjk04O26xsOj8bBvpvSl1SiwXNMlgQ8GI0B0+UD2Ow5unt4mhA2R95xSblgWCJHWjbHDW/meXd+sgNCkU4D/d4rmKOekdyo2Lt5HnlWoa0vN/lELHco9boXIt0Fw8sC/kZWO0r7HwEfGHHvq/YuroQumysxHbISAesqDDL6zrsOlCXEYTsTW0KgPikPSujZLYj9fkqufKg5pTBOrJIQBKRJv8ePpcYQIdRowqmlmdZQrGUVw85G153of0+zjzCFJxguma5WNpNWF9tMj3BKVbF/OefX3c96ZgahJJpS70Olv35rB7twNonTGcNS4Aag5myysjR5YNcvwZcUS2xDw3aqUOBvtNOpaFPiknzEjPZyp8MuZJ2tTknvKfOLZvUsvaRWVSSdR2eXEaH2lvbX7jA3MB8wBwYFKw4DAhoEFMj1viYMDFsRfgSRvcZn90AnxKwUBBTWJTs0VLTN8kD0QlryJ2k+yFzihQ==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","managed":true,"attributes":{"enabled":true,"nbf":1599596330,"exp":1631132930,"created":1599596931,"updated":1599596931,"recoveryLevel":"Recoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/ec36305784064c3185ff24acde44c685"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3964'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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
@@ -961,66 +973,66 @@ interactions:
"vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"},
"loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081},
"certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value":
- "381E95079C590B0CF519EFEA25835F832C7B01C4"}, "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/c159a9d73ae94574ac8a559c032d75fb"},
+ "8936E458F4737D21B8DC2557CE5484099BE440D9"}, "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/ec36305784064c3185ff24acde44c685"},
"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:
- - '18992'
- Content-Type:
- - application/json; charset=utf-8
- ParameterSetName:
- - -g -c -l --secret-identifier --vm-password --cluster-size
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- 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=2020-06-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007091730","name":"AzurePSDeployment-202007091730","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000005"},"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":"381E95079C590B0CF519EFEA25835F832C7B01C4"},"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/c159a9d73ae94574ac8a559c032d75fb"},"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-07-09T09:30:39.564422Z","duration":"PT0S","correlationId":"cbccca3c-5b7a-4983-abeb-278ab2dfab89","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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"33ivnktdq447y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"33ivnktdq447y3","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/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2","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-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3"},{"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-000005-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-000005"}]}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '8708'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:30:59 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",
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '18992'
+ 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009081329","name":"AzurePSDeployment-202009081329","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000005"},"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":"8936E458F4737D21B8DC2557CE5484099BE440D9"},"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/ec36305784064c3185ff24acde44c685"},"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-09-08T20:29:03.1972501Z","duration":"PT0S","correlationId":"da9cee75-90f4-4c6d-b200-7362fafbbb44","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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"maqg2dgtxhihu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"maqg2dgtxhihu3","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/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2","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-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3"},{"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-000005-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-000005"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '8709'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:04 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
@@ -1230,481 +1242,524 @@ interactions:
"vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"},
"loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081},
"certificateStorevalue": {"value": "My"}, "certificateThumbprint": {"value":
- "381E95079C590B0CF519EFEA25835F832C7B01C4"}, "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/c159a9d73ae94574ac8a559c032d75fb"},
+ "8936E458F4737D21B8DC2557CE5484099BE440D9"}, "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/ec36305784064c3185ff24acde44c685"},
"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:
- - '18992'
- Content-Type:
- - application/json; charset=utf-8
- ParameterSetName:
- - -g -c -l --secret-identifier --vm-password --cluster-size
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- 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=2020-06-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007091730","name":"AzurePSDeployment-202007091730","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000005"},"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":"381E95079C590B0CF519EFEA25835F832C7B01C4"},"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/c159a9d73ae94574ac8a559c032d75fb"},"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-07-09T09:31:04.2062141Z","duration":"PT2.4257539S","correlationId":"8d774fd6-4d83-4604-87f4-0b5ce5c9775a","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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"33ivnktdq447y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"33ivnktdq447y3","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/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2","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-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"}]}}'
- headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007091730/operationStatuses/08586073198236972464?api-version=2020-06-01
- cache-control:
- - no-cache
- content-length:
- - '7191'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:31:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
- status:
- code: 201
- message: Created
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c -l --secret-identifier --vm-password --cluster-size
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:31:36 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:32:06 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:32:36 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:33:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c -l --secret-identifier --vm-password --cluster-size
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:33:38 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:34:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c -l --secret-identifier --vm-password --cluster-size
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:34:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c -l --secret-identifier --vm-password --cluster-size
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586073198236972464?api-version=2020-06-01
- response:
- body:
- string: '{"status":"Succeeded"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '22'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:35:10 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202007091730","name":"AzurePSDeployment-202007091730","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000005"},"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":"381E95079C590B0CF519EFEA25835F832C7B01C4"},"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/c159a9d73ae94574ac8a559c032d75fb"},"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-07-09T09:35:06.6592706Z","duration":"PT4M4.8788104S","correlationId":"8d774fd6-4d83-4604-87f4-0b5ce5c9775a","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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"33ivnktdq447y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"33ivnktdq447y3","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/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs33ivnktdq447y2","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-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"53acd080-5ba1-40c9-9b59-a76db48814b3","clusterCodeVersion":"7.1.417.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3","certificate":{"thumbprint":"381E95079C590B0CF519EFEA25835F832C7B01C4","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":"sflogs33ivnktdq447y2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs33ivnktdq447y2.blob.core.windows.net/","queueEndpoint":"https://sflogs33ivnktdq447y2.queue.core.windows.net/","tableEndpoint":"https://sflogs33ivnktdq447y2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"7.1.417.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-000005-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-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/33ivnktdq447y3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs33ivnktdq447y2"}]}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '10297'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:35:10 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '18992'
+ 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009081329","name":"AzurePSDeployment-202009081329","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000005"},"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":"8936E458F4737D21B8DC2557CE5484099BE440D9"},"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/ec36305784064c3185ff24acde44c685"},"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-09-08T20:29:06.2594653Z","duration":"PT0.5877272S","correlationId":"9e636742-e77e-4420-b713-13ef25f66d63","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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"maqg2dgtxhihu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"maqg2dgtxhihu3","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/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2","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-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009081329/operationStatuses/08586020099398059383?api-version=2020-06-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '7191'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:05 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:29:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:30:06 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:30:36 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:31:06 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:31:36 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:32:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --secret-identifier --vm-password --cluster-size
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:32:36 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:33:06 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586020099398059383?api-version=2020-06-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:33:36 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.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202009081329","name":"AzurePSDeployment-202009081329","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17577236477356496805","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000005"},"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":"8936E458F4737D21B8DC2557CE5484099BE440D9"},"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/ec36305784064c3185ff24acde44c685"},"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-09-08T20:33:33.2188553Z","duration":"PT4M27.5471172S","correlationId":"9e636742-e77e-4420-b713-13ef25f66d63","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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-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-000005-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000005-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"maqg2dgtxhihu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"maqg2dgtxhihu3","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/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsmaqg2dgtxhihu2","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-000005","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000005"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"63765f2b-328f-424b-9b3a-01efcba36040","clusterCodeVersion":"7.1.456.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040","certificate":{"thumbprint":"8936E458F4737D21B8DC2557CE5484099BE440D9","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":"sflogsmaqg2dgtxhihu2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/","queueEndpoint":"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/","tableEndpoint":"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"7.1.456.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-000005-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-000005"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/maqg2dgtxhihu3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsmaqg2dgtxhihu2"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '10298'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:33:36 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.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -1718,75 +1773,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2591'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:35:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2630'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:33:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -1800,75 +1855,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2591'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:35:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2630'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:33:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -1882,75 +1937,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2591'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:35:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2630'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:33:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -1964,75 +2019,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2591'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:36:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2630'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:34:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2046,75 +2101,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2591'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:37:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2630'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:35:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Deploying\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2128,75 +2183,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2591'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:38:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2636'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:36:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2210,75 +2265,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2597'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:39:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2636'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:37:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2292,75 +2347,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2597'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:40:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2636'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:38:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2374,75 +2429,75 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2597'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:41:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2636'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:39:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Ready\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Ready\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2456,450 +2511,397 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2587'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:42:25 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Type:
- - application/json; charset=utf-8
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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/c159a9d73ae94574ac8a559c032d75fb","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","x5t":"OB6VB5xZCwz1Ge_qJYNfgyx7AcQ","cer":"MIIDQjCCAiqgAwIBAgIQRb6ip4DbTSu9vBIaAe3dJjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDcwOTA5MjAxOVoXDTIxMDcwOTA5MzAxOVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFCVLvwon3Z9OA+zcCos4CTVZRNdEMB0GA1UdDgQWBBQlS78KJ92fTgPs3AqLOAk1WUTXRDANBgkqhkiG9w0BAQsFAAOCAQEAI0kdOeLIq36J1aVjkglivrNdaF828s+o69h1ErClZIiYYGHSCifgMSBA/9sF9U5PnNaJZ4DlyyhpotP0ivJPlTL4HGOrOiJqE1gFyU4gvzsHw8pmXtI++ifiMAOr9U6pmcq/1LCWVMmlbRcconre3A3oMMgeHmmRdw63M0DobeLakJ+btNI04rLjna1jbl7q/yK9NekPOxePwc+j2XfMwyyOvu8J098rHmhp9C2SWJ2Rcg43PHSmiu0x1d2x571QeImgR9tIbP1NwCk46gM4jgdXXKhikGkI6WzLOTvhE9b9DwmH4DomzP8kAs3hfP4caW6LIRSZdRtyN8izZvpfZQ==","attributes":{"enabled":true,"nbf":1594286419,"exp":1625823019,"created":1594287020,"updated":1594287020,"recoveryLevel":"Recoverable+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":1594287006,"updated":1594287006}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2494'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:42:27 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
- - request:
- body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2626'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:40:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ 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.9 msrest_azure/0.6.3 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/ec36305784064c3185ff24acde44c685","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","x5t":"iTbkWPRzfSG43CVXzlSECZvkQNk","cer":"MIIDQjCCAiqgAwIBAgIQa2ygUE9mQ3iJ9lsB4g8xWjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDkwODIwMTg1MFoXDTIxMDkwODIwMjg1MFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFN4l4edqisHaWMLDdCH9MTOdJKnSMB0GA1UdDgQWBBTeJeHnaorB2ljCw3Qh/TEznSSp0jANBgkqhkiG9w0BAQsFAAOCAQEAsAwIMFL8LCG3/fPXbJQS1ZOKJGDI/fLQAcAsJtcoyBm8kg53Hp78EpXeDIF3DrxXCcXUWryjkoWAaAKEdrLbcmaKKKVzshwH9R3jYyrr2iBqUhkNgzE68w8b/PYstEr2y4p3j8hf8daTOFjcLzHT7uADL0HTQE9bNd3RY0toWcoSS+ZvRh4oyPKdbf0DluKdB4y2CeghNR1F674FXUc9crSed0ol53JSLZp7aAZZbRNCkrwGr4M/VT45uRhxJfiq218vCRUgwG8QHnBEnde7ln1mHMLvJJwbQ1i20HLYAmGTufYEPfPY20wzK+zAqhHtfkJ2l4mO6E8EOXq38HQIBQ==","attributes":{"enabled":true,"nbf":1599596330,"exp":1631132930,"created":1599596931,"updated":1599596931,"recoveryLevel":"Recoverable+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":1599596915,"updated":1599596915}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:40:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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-cert2000004/create?api-version=7.0
- response:
- body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIbnzMP5LpawsRbBgQA+ikpJ2WHbA+ncQLseXNzCF/FemNNx8E9AyAJA8Uq9mb+KWhnsMIq/rmJNONg29DwaDdofBQ5rCWXg83AO2kRnmNPkvujbqYmvrzT1KMC4SO28OTlUNGiu2gR0aRpP8A35WGcWFMK/H9OcPQpnvQ4zXtQNd5TYunHJZLZHQ8yQJq0O4e71sx1409kWpWug96KQtO3HGNrbYbNS7c5cLY+adZr7H7jtqSmolWKpGo5Z/DRxYsYYdah25sAn85DAz3TZmc0LZg1mavQmbNEJzKc1906LM2wn//sk2wx3/xVHEda3hBlBbA/Oygly+Uqn9KruQjsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBcrplWoc5sZxszmGpZQoB5mX+7O8F/z57KYFe8GweNjrrdoG6haCkgV0NbshglXeFgYgufr25Fo43UoxbxWQMwlnNDkZxI0I1WA/CcFsm49zqU0AQ41wtINdUFzSqrQL9SZzA5zlIuNzlpO8mLaZcRU53+YLY/WyYtHefeH0fwJND/mDPwKJymKhEQNWxqip0Q+ihnv157boCWr8wuIV05+7/pKDPf8b3lxxb7JGZD7jJPd5tTMt8IXM+ao0Cntj7x0UrBpfKxUu/zl4Jq/oG2PGAW5AZ7M8L6D33MYzUuWPLCgpOC4UaNPhVqncAFe45L+EvlJgguTfl82sH6Un7y","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ 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.9 msrest_azure/0.6.3 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-cert2000004/create?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK+BqTct0Kry8H1d3v/FnMnoJVETprMOeZt68bzBsEN2ZZakpgqE6EnfrquLcrLrjayAumpko5gztpZS04+M3Kk3Kq8FXE8fFOYltXYphNeCdDyBGH6AVFkcB0yNEGnPfmwb4yknZ7QxyAlGmm/JIE6/vSkGu7h3dO3KIkz4JohnP9gD66cYCs5A7NZKRVpEtBdJG6J27L4EmEXexdd8MC2u8NBIzwBRrbbwJ82onx3E8f4ik/Mbl8y7tijBTYMaUU1CJxZj6GFKxrVyH1AJfgjT3/x16FZhcB8GCYj4HfdSWN/VI/FxbMr2XClZhRGf3b5eTD16JF4B5ZsrUutT2cUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBD+pmUISd0JaEeTfYF6KuhR2p3wZ/OIxUGDlFe7shKSINWMBtqgoRIAMFt6RVHajaV/5cWbZbBe097u9SlO6USDX2ICCPhnXdQPXCgovq5f5Ur6HpoNKXOPqcWRdgMjZVYtlS/sIBSEzgawV+rxY8+CgyPiaftPqvmV4gfh+S6k97cxs2bpL/+cgzLxj3Lc3wVJ1tdcWbfJEAhxgHNwprlJ3+NdaYkpEZtkTkw6kGEWMdMxxU3YSIXvG9jwWwwGKzh8fhmjgREcOCkZeE4vTzHruNowykPXm2kedulI6cHrD98gP86wuWMs7ku9ggxjNbhvkFSpxeAuquydGMQ/NOC","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":"11e73ea3e8bd4bdd9cf1539a4e27b966"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:42:29 GMT
- expires:
- - '-1'
- location:
- - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending?api-version=7.0&request_id=11e73ea3e8bd4bdd9cf1539a4e27b966
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
- response:
- body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIbnzMP5LpawsRbBgQA+ikpJ2WHbA+ncQLseXNzCF/FemNNx8E9AyAJA8Uq9mb+KWhnsMIq/rmJNONg29DwaDdofBQ5rCWXg83AO2kRnmNPkvujbqYmvrzT1KMC4SO28OTlUNGiu2gR0aRpP8A35WGcWFMK/H9OcPQpnvQ4zXtQNd5TYunHJZLZHQ8yQJq0O4e71sx1409kWpWug96KQtO3HGNrbYbNS7c5cLY+adZr7H7jtqSmolWKpGo5Z/DRxYsYYdah25sAn85DAz3TZmc0LZg1mavQmbNEJzKc1906LM2wn//sk2wx3/xVHEda3hBlBbA/Oygly+Uqn9KruQjsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBcrplWoc5sZxszmGpZQoB5mX+7O8F/z57KYFe8GweNjrrdoG6haCkgV0NbshglXeFgYgufr25Fo43UoxbxWQMwlnNDkZxI0I1WA/CcFsm49zqU0AQ41wtINdUFzSqrQL9SZzA5zlIuNzlpO8mLaZcRU53+YLY/WyYtHefeH0fwJND/mDPwKJymKhEQNWxqip0Q+ihnv157boCWr8wuIV05+7/pKDPf8b3lxxb7JGZD7jJPd5tTMt8IXM+ao0Cntj7x0UrBpfKxUu/zl4Jq/oG2PGAW5AZ7M8L6D33MYzUuWPLCgpOC4UaNPhVqncAFe45L+EvlJgguTfl82sH6Un7y","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ time based on the issuer provider. Please check again later.","request_id":"4691222948ad45439dfeccfd7ef05b64"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:40:42 GMT
+ expires:
+ - '-1'
+ location:
+ - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending?api-version=7.0&request_id=4691222948ad45439dfeccfd7ef05b64
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK+BqTct0Kry8H1d3v/FnMnoJVETprMOeZt68bzBsEN2ZZakpgqE6EnfrquLcrLrjayAumpko5gztpZS04+M3Kk3Kq8FXE8fFOYltXYphNeCdDyBGH6AVFkcB0yNEGnPfmwb4yknZ7QxyAlGmm/JIE6/vSkGu7h3dO3KIkz4JohnP9gD66cYCs5A7NZKRVpEtBdJG6J27L4EmEXexdd8MC2u8NBIzwBRrbbwJ82onx3E8f4ik/Mbl8y7tijBTYMaUU1CJxZj6GFKxrVyH1AJfgjT3/x16FZhcB8GCYj4HfdSWN/VI/FxbMr2XClZhRGf3b5eTD16JF4B5ZsrUutT2cUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBD+pmUISd0JaEeTfYF6KuhR2p3wZ/OIxUGDlFe7shKSINWMBtqgoRIAMFt6RVHajaV/5cWbZbBe097u9SlO6USDX2ICCPhnXdQPXCgovq5f5Ur6HpoNKXOPqcWRdgMjZVYtlS/sIBSEzgawV+rxY8+CgyPiaftPqvmV4gfh+S6k97cxs2bpL/+cgzLxj3Lc3wVJ1tdcWbfJEAhxgHNwprlJ3+NdaYkpEZtkTkw6kGEWMdMxxU3YSIXvG9jwWwwGKzh8fhmjgREcOCkZeE4vTzHruNowykPXm2kedulI6cHrD98gP86wuWMs7ku9ggxjNbhvkFSpxeAuquydGMQ/NOC","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":"11e73ea3e8bd4bdd9cf1539a4e27b966"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:42:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
- response:
- body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIbnzMP5LpawsRbBgQA+ikpJ2WHbA+ncQLseXNzCF/FemNNx8E9AyAJA8Uq9mb+KWhnsMIq/rmJNONg29DwaDdofBQ5rCWXg83AO2kRnmNPkvujbqYmvrzT1KMC4SO28OTlUNGiu2gR0aRpP8A35WGcWFMK/H9OcPQpnvQ4zXtQNd5TYunHJZLZHQ8yQJq0O4e71sx1409kWpWug96KQtO3HGNrbYbNS7c5cLY+adZr7H7jtqSmolWKpGo5Z/DRxYsYYdah25sAn85DAz3TZmc0LZg1mavQmbNEJzKc1906LM2wn//sk2wx3/xVHEda3hBlBbA/Oygly+Uqn9KruQjsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBcrplWoc5sZxszmGpZQoB5mX+7O8F/z57KYFe8GweNjrrdoG6haCkgV0NbshglXeFgYgufr25Fo43UoxbxWQMwlnNDkZxI0I1WA/CcFsm49zqU0AQ41wtINdUFzSqrQL9SZzA5zlIuNzlpO8mLaZcRU53+YLY/WyYtHefeH0fwJND/mDPwKJymKhEQNWxqip0Q+ihnv157boCWr8wuIV05+7/pKDPf8b3lxxb7JGZD7jJPd5tTMt8IXM+ao0Cntj7x0UrBpfKxUu/zl4Jq/oG2PGAW5AZ7M8L6D33MYzUuWPLCgpOC4UaNPhVqncAFe45L+EvlJgguTfl82sH6Un7y","cancellation_requested":false,"status":"inProgress","status_details":"Pending
+ time based on the issuer provider. Please check again later.","request_id":"4691222948ad45439dfeccfd7ef05b64"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:40:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK+BqTct0Kry8H1d3v/FnMnoJVETprMOeZt68bzBsEN2ZZakpgqE6EnfrquLcrLrjayAumpko5gztpZS04+M3Kk3Kq8FXE8fFOYltXYphNeCdDyBGH6AVFkcB0yNEGnPfmwb4yknZ7QxyAlGmm/JIE6/vSkGu7h3dO3KIkz4JohnP9gD66cYCs5A7NZKRVpEtBdJG6J27L4EmEXexdd8MC2u8NBIzwBRrbbwJ82onx3E8f4ik/Mbl8y7tijBTYMaUU1CJxZj6GFKxrVyH1AJfgjT3/x16FZhcB8GCYj4HfdSWN/VI/FxbMr2XClZhRGf3b5eTD16JF4B5ZsrUutT2cUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBD+pmUISd0JaEeTfYF6KuhR2p3wZ/OIxUGDlFe7shKSINWMBtqgoRIAMFt6RVHajaV/5cWbZbBe097u9SlO6USDX2ICCPhnXdQPXCgovq5f5Ur6HpoNKXOPqcWRdgMjZVYtlS/sIBSEzgawV+rxY8+CgyPiaftPqvmV4gfh+S6k97cxs2bpL/+cgzLxj3Lc3wVJ1tdcWbfJEAhxgHNwprlJ3+NdaYkpEZtkTkw6kGEWMdMxxU3YSIXvG9jwWwwGKzh8fhmjgREcOCkZeE4vTzHruNowykPXm2kedulI6cHrD98gP86wuWMs7ku9ggxjNbhvkFSpxeAuquydGMQ/NOC","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":"11e73ea3e8bd4bdd9cf1539a4e27b966"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:42:42 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
- response:
- body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIbnzMP5LpawsRbBgQA+ikpJ2WHbA+ncQLseXNzCF/FemNNx8E9AyAJA8Uq9mb+KWhnsMIq/rmJNONg29DwaDdofBQ5rCWXg83AO2kRnmNPkvujbqYmvrzT1KMC4SO28OTlUNGiu2gR0aRpP8A35WGcWFMK/H9OcPQpnvQ4zXtQNd5TYunHJZLZHQ8yQJq0O4e71sx1409kWpWug96KQtO3HGNrbYbNS7c5cLY+adZr7H7jtqSmolWKpGo5Z/DRxYsYYdah25sAn85DAz3TZmc0LZg1mavQmbNEJzKc1906LM2wn//sk2wx3/xVHEda3hBlBbA/Oygly+Uqn9KruQjsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBcrplWoc5sZxszmGpZQoB5mX+7O8F/z57KYFe8GweNjrrdoG6haCkgV0NbshglXeFgYgufr25Fo43UoxbxWQMwlnNDkZxI0I1WA/CcFsm49zqU0AQ41wtINdUFzSqrQL9SZzA5zlIuNzlpO8mLaZcRU53+YLY/WyYtHefeH0fwJND/mDPwKJymKhEQNWxqip0Q+ihnv157boCWr8wuIV05+7/pKDPf8b3lxxb7JGZD7jJPd5tTMt8IXM+ao0Cntj7x0UrBpfKxUu/zl4Jq/oG2PGAW5AZ7M8L6D33MYzUuWPLCgpOC4UaNPhVqncAFe45L+EvlJgguTfl82sH6Un7y","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":"11e73ea3e8bd4bdd9cf1539a4e27b966"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1322'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:42:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
- response:
- body:
- string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAIbnzMP5LpawsRbBgQA+ikpJ2WHbA+ncQLseXNzCF/FemNNx8E9AyAJA8Uq9mb+KWhnsMIq/rmJNONg29DwaDdofBQ5rCWXg83AO2kRnmNPkvujbqYmvrzT1KMC4SO28OTlUNGiu2gR0aRpP8A35WGcWFMK/H9OcPQpnvQ4zXtQNd5TYunHJZLZHQ8yQJq0O4e71sx1409kWpWug96KQtO3HGNrbYbNS7c5cLY+adZr7H7jtqSmolWKpGo5Z/DRxYsYYdah25sAn85DAz3TZmc0LZg1mavQmbNEJzKc1906LM2wn//sk2wx3/xVHEda3hBlBbA/Oygly+Uqn9KruQjsCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBcrplWoc5sZxszmGpZQoB5mX+7O8F/z57KYFe8GweNjrrdoG6haCkgV0NbshglXeFgYgufr25Fo43UoxbxWQMwlnNDkZxI0I1WA/CcFsm49zqU0AQ41wtINdUFzSqrQL9SZzA5zlIuNzlpO8mLaZcRU53+YLY/WyYtHefeH0fwJND/mDPwKJymKhEQNWxqip0Q+ihnv157boCWr8wuIV05+7/pKDPf8b3lxxb7JGZD7jJPd5tTMt8IXM+ao0Cntj7x0UrBpfKxUu/zl4Jq/oG2PGAW5AZ7M8L6D33MYzUuWPLCgpOC4UaNPhVqncAFe45L+EvlJgguTfl82sH6Un7y","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004","request_id":"11e73ea3e8bd4bdd9cf1539a4e27b966"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1255'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:04 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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/c159a9d73ae94574ac8a559c032d75fb","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","x5t":"OB6VB5xZCwz1Ge_qJYNfgyx7AcQ","cer":"MIIDQjCCAiqgAwIBAgIQRb6ip4DbTSu9vBIaAe3dJjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDcwOTA5MjAxOVoXDTIxMDcwOTA5MzAxOVowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALwShv5ROlt2EkxUlk3vp/i0+/4Yt29IyWyr4wxQe1bGVYGDYp9i352eeh7JDSlbezFRmPfQbzvHS31ckSQhbAEYZ/KQizz2ltF9Z+d0LaT50/OGsoQROSY5aeHTkdOqZyfXOCk6Gr7J+kQH+xRbUzK8sK3JE6AIBS5RXH6+PS/4UVa9BX6mV3XNSrdnmr9SFXjDtDGpR5wAZUY8BN6bQVxNSc7JmLf4/wxQtFKRLOZU6m1Ehst5bvOc9TS27QgljVm4fNnv60DIAnFRQu2LQ2E63gU6JdYmfWb0q5OB6xMi5sE/Tm0c/3owVIDaCS6G8yBgIMWMyBB59tn+8C1C8AcCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFCVLvwon3Z9OA+zcCos4CTVZRNdEMB0GA1UdDgQWBBQlS78KJ92fTgPs3AqLOAk1WUTXRDANBgkqhkiG9w0BAQsFAAOCAQEAI0kdOeLIq36J1aVjkglivrNdaF828s+o69h1ErClZIiYYGHSCifgMSBA/9sF9U5PnNaJZ4DlyyhpotP0ivJPlTL4HGOrOiJqE1gFyU4gvzsHw8pmXtI++ifiMAOr9U6pmcq/1LCWVMmlbRcconre3A3oMMgeHmmRdw63M0DobeLakJ+btNI04rLjna1jbl7q/yK9NekPOxePwc+j2XfMwyyOvu8J098rHmhp9C2SWJ2Rcg43PHSmiu0x1d2x571QeImgR9tIbP1NwCk46gM4jgdXXKhikGkI6WzLOTvhE9b9DwmH4DomzP8kAs3hfP4caW6LIRSZdRtyN8izZvpfZQ==","attributes":{"enabled":true,"nbf":1594286419,"exp":1625823019,"created":1594287020,"updated":1594287020,"recoveryLevel":"Recoverable+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":1594287006,"updated":1594287006}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2494'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:06 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ time based on the issuer provider. Please check again later.","request_id":"4691222948ad45439dfeccfd7ef05b64"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1322'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:40:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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-cert2000004/pending?api-version=7.0
+ response:
+ body:
+ string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK+BqTct0Kry8H1d3v/FnMnoJVETprMOeZt68bzBsEN2ZZakpgqE6EnfrquLcrLrjayAumpko5gztpZS04+M3Kk3Kq8FXE8fFOYltXYphNeCdDyBGH6AVFkcB0yNEGnPfmwb4yknZ7QxyAlGmm/JIE6/vSkGu7h3dO3KIkz4JohnP9gD66cYCs5A7NZKRVpEtBdJG6J27L4EmEXexdd8MC2u8NBIzwBRrbbwJ82onx3E8f4ik/Mbl8y7tijBTYMaUU1CJxZj6GFKxrVyH1AJfgjT3/x16FZhcB8GCYj4HfdSWN/VI/FxbMr2XClZhRGf3b5eTD16JF4B5ZsrUutT2cUCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBD+pmUISd0JaEeTfYF6KuhR2p3wZ/OIxUGDlFe7shKSINWMBtqgoRIAMFt6RVHajaV/5cWbZbBe097u9SlO6USDX2ICCPhnXdQPXCgovq5f5Ur6HpoNKXOPqcWRdgMjZVYtlS/sIBSEzgawV+rxY8+CgyPiaftPqvmV4gfh+S6k97cxs2bpL/+cgzLxj3Lc3wVJ1tdcWbfJEAhxgHNwprlJ3+NdaYkpEZtkTkw6kGEWMdMxxU3YSIXvG9jwWwwGKzh8fhmjgREcOCkZeE4vTzHruNowykPXm2kedulI6cHrD98gP86wuWMs7ku9ggxjNbhvkFSpxeAuquydGMQ/NOC","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-cert2000004","request_id":"4691222948ad45439dfeccfd7ef05b64"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1255'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ 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.9 msrest_azure/0.6.3 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/ec36305784064c3185ff24acde44c685","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","x5t":"iTbkWPRzfSG43CVXzlSECZvkQNk","cer":"MIIDQjCCAiqgAwIBAgIQa2ygUE9mQ3iJ9lsB4g8xWjANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIwMDkwODIwMTg1MFoXDTIxMDkwODIwMjg1MFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALzB1riG/W0g2pVcPWtodZvj9xrS5/pJ7eMN/iX8jeb2y2nEkEJYvGoQfr3q6Z4TLaG56ja2+CrUVK4btGYU7vCLC4OEhci25sxRQSTLcj1g0NMjFdE1+FqiG0erhhGxMB0c4h5Pd/DYAUMFT/ObAt9/f3xKxH+sgS6L+xjL19VvXEQ2x5bSWFTdUlhfHQ/goS2mfz1pSpT1nw8IBf9/wjXMgjOIHEJrE3N03a0PH2v5dkik7c/Q3n/UVEyU/DuysJ9AWNTYc0xbDqJ8ugGgsU1FslMN2YQ7h1tpjJBBKwI+VAEp9jZjzyIYc88TGuhE0JnEkfneEytvH2jF7a1ytw8CAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFN4l4edqisHaWMLDdCH9MTOdJKnSMB0GA1UdDgQWBBTeJeHnaorB2ljCw3Qh/TEznSSp0jANBgkqhkiG9w0BAQsFAAOCAQEAsAwIMFL8LCG3/fPXbJQS1ZOKJGDI/fLQAcAsJtcoyBm8kg53Hp78EpXeDIF3DrxXCcXUWryjkoWAaAKEdrLbcmaKKKVzshwH9R3jYyrr2iBqUhkNgzE68w8b/PYstEr2y4p3j8hf8daTOFjcLzHT7uADL0HTQE9bNd3RY0toWcoSS+ZvRh4oyPKdbf0DluKdB4y2CeghNR1F674FXUc9crSed0ol53JSLZp7aAZZbRNCkrwGr4M/VT45uRhxJfiq218vCRUgwG8QHnBEnde7ln1mHMLvJJwbQ1i20HLYAmGTufYEPfPY20wzK+zAqhHtfkJ2l4mO6E8EOXq38HQIBQ==","attributes":{"enabled":true,"nbf":1599596330,"exp":1631132930,"created":1599596931,"updated":1599596931,"recoveryLevel":"Recoverable+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":1599596915,"updated":1599596915}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
\ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {\r\n \"resourceType\":
\"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000005\"\r\n },\r\n
- \ \"etag\": \"W/\\\"637298838956178370\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"clusterId\": \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"clusterCodeVersion\": \"7.1.417.9590\",\r\n \"clusterState\": \"Ready\",\r\n
+ \ \"etag\": \"W/\\\"637351937688241885\\\"\",\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"clusterId\": \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"clusterCodeVersion\": \"7.1.456.9590\",\r\n \"clusterState\": \"Ready\",\r\n
\ \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -2913,262 +2915,263 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2587'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:43:07 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-07-09T09:29:18Z"},"properties":{"provisioningState":"Succeeded"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '428'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- 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/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5","name":"bim-kv5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv5555","name":"bim-kv5555","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv55555","name":"bim-kv55555","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555565","name":"bim-kv555565","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555575","name":"bim-kv555575","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555585","name":"bim-kv555585","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv555595","name":"bim-kv555595","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv6666","name":"bim-kv6666","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv8","name":"bim-kv8","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0528","name":"bim-kv-0528","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0529","name":"bim-kv-0529","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0529-2","name":"bim-kv-0529-2","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-0701","name":"bim-kv-0701","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-111111","name":"bim-kv-111111","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-20200508","name":"bim-kv-20200508","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-20200528","name":"bim-kv-20200528","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-kv-666","name":"bim-kv-666","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test1","name":"bim-sd-test1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test2","name":"bim-sd-test2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test3","name":"bim-sd-test3","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bim-sd-test4","name":"bim-sd-test4","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0506","name":"bimkv0506","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv05062","name":"bimkv05062","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0519","name":"bimkv0519","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0519-3","name":"bimkv0519-3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv0703","name":"bimkv0703","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkv20200418","name":"bimkv20200418","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue1","name":"bimkvissue1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue12","name":"bimkvissue12","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue13","name":"bimkvissue13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue2","name":"bimkvissue2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue3","name":"bimkvissue3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue4","name":"bimkvissue4","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue5","name":"bimkvissue5","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue6","name":"bimkvissue6","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue7","name":"bimkvissue7","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvissue8","name":"bimkvissue8","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvrbac1","name":"bimkvrbac1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd1","name":"bimkvsd1","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd2","name":"bimkvsd2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd3","name":"bimkvsd3","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd5","name":"bimkvsd5","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvsd6","name":"bimkvsd6","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvTest","name":"bimkvTest","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimkvtest20200513","name":"bimkvtest20200513","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtrack2test","name":"bimtrack2test","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim-rg/providers/Microsoft.KeyVault/vaults/bimtrack2test2","name":"bimtrack2test2","type":"Microsoft.KeyVault/vaults","location":"eastus2euap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test","name":"bimkv-nr-test","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test2","name":"bimkv-nr-test2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimkv-nr-test3","name":"bimkv-nr-test3","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bim_pl_test_rg/providers/Microsoft.KeyVault/vaults/bimplkv","name":"bimplkv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6cwdp2ylgrk6euk2o3awkvbjbhczlt27nncgh76is6sknrsx62b76rmyej3i6gld/providers/Microsoft.KeyVault/vaults/clitestrgp6cwdp2ylgrk","name":"clitestrgp6cwdp2ylgrk","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0227","name":"jlkv0227","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jlrg1/providers/Microsoft.KeyVault/vaults/jlkv0309","name":"jlkv0309","type":"Microsoft.KeyVault/vaults","location":"southeastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg929184228fe9b/providers/Microsoft.KeyVault/vaults/vault1c3903107","name":"vault1c3903107","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgbee277050cc78/providers/Microsoft.KeyVault/vaults/vault231905656","name":"vault231905656","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yeming/providers/Microsoft.KeyVault/vaults/yeming","name":"yeming","type":"Microsoft.KeyVault/vaults","location":"eastasia","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9393","name":"zhoxingtest9393","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhoxing-test/providers/Microsoft.KeyVault/vaults/zhoxingtest9ac53638","name":"zhoxingtest9ac53638","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{"hidden-DevTestLabs-LabUId":"6e279161-d008-42b7-90a1-6801fc4bc4ca","CreatedBy":"DevTestLabs"}}]}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '14330'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","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,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '1192'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:09 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.283
- 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.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 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/c159a9d73ae94574ac8a559c032d75fb?api-version=7.0
- response:
- body:
- string: '{"value":"MIIKTAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAg/D4DfM1b3ZgICB9AEggTYfz9Ic4xpIzdkLnTAyBnl5H2npefKa7xEk74/UgY47Y2NhlYbK/ZCpNFYm+ZGUodBM6Kj6m3Q9C+k/6Er3Lt2odl4Es/dEc6ldHNEhNxJG7jd0O6MZdKV68PO05XpNsWwwsU2K9d1jF1714DR9b6I/VGwoa0nbY73ayn32jgnIlVbozvbAbEWiWm7c6pCsZiLEBb4H/R4flLx8UFFVdpDCFyeeSNeCAHKAmEqlKIiSAxQYbJOTIVUBuyrO49GChHi7LJSCZxCPtXLEpoAB8E+fLwQGwlI+Gysixay4Naa0iJXyrq4Lsoc2eKMkdleR2gSmXY5LmiKllBxNg6FnkIOq51rq9gysbqXY4/mwsPbdWPbHqJeLVIjpJKDLLtkhvvsiNmSk0yV/v6MT7FV22JbJRaVckgKs5FnAlCnlXHE0ixnAHN4hTi+b8oFErBgGrDTqD9uLXAugrMdNn8rCqXTHy0+0G3TB6dJkWTO/tX5aFT3LSGizZkP+HWbTYhK/+Cz8pUv3yfe+8AenIDPpamsxdV2w/UIfTUSqIeeC3ii/ZtQMyT/Bld4G/3t782SwrN+2A9AjF5NDYuCPnmzxyjGbe5DBv6ZIW4AW0bOomhZzVTRfy01mDR4yDGT/N2teM4KuuOOBClTrtLjpm1HmqiJexx3O39FSDGm0YbodM7J3VPbC+6S1Y7NkrJZrwx3hQDtL6wFK7LOO5eX/nKhV162TbKU7Y7VHm0PNEUX3YCpiGcfAw1C3a/3Y1VltN1FKyX60N7pzmbpv9iT/JAELb2y3a+VdPqQUvJn/nDHTG1rwR4uyy7F9XQ10Ewdceq+1U6kxQPCu67BA1Ju2NdrsuConKRIW6V6xWcqr3FtrkX6S23Mly+Aq9MkQXWVjzgU4490ajR0Xs7+oc5xPcf1KY10rOnk9j6ZR5iXCv2QrPeXqAGTtH0Mv+Kq3kw4CflWfyHNUvLiDrpmA5sB9On7QCpqWwW8TRyL2FkANmQUBPnZ2bNXFSCQenekbmMoAxPPwwDfZSsOy+LD+EwMvVvoN3VfYPn2/C9KgseS8lPth6tlHmO4Nrb5r2rpCMB2J/D6ROEfYfOdNjug4WvCm0lp+3EpeV7IUjUw9jJMBsk4F+NepWbhCe2PKoFCw5P/KntLEHs92hh0SeKArLnBGdNo4fnoav1I4KoBWsrc7YkckWdRXtR/txT8Qediu4A5y+NQ4shCwtfMFSb82jyqvtxCrPCZCvC8lmiU+NBlIJzBR4T1l/UmCe35kY0Q1w0qitbubBeaZNVhKEnk5VEk/BxK3VtX4Y/Y7mLcUzmDBo7lKVXcGuKUSm6+n/84tJeMIfJDwhT9BJOtnV9xsx8/Q/dQB2kvth2R4+CPcgqTkteGk4ORafnULDXap/2q2TIWVQvcgE2Txk1d764fYlsYJiXQsiqK9fZioFDNyu0aPS4KNzud0W6USFjxIDYpNhWdh85lP4HJ9vZmeoZBwMNSlyHs85SvazTgSKOqbnl9zHaFbrzWtBoFfpujA/GwL84kCgYIUnWSyQzm1S2t0kcxlyIqR4fml/FB5KHdRrgbvAE1eZCwY/zA6f/OB4XwNxvixdeKNwTlP9PKJNyypjZXhDMFVSetoxGewAOUQDmHIDE2T7InRcDU15yWLnzaVjGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IADUANwAwAGYAZgA3AGIAMQAtADIANAAyAGEALQA0ADAAYgAwAC0AYQAwADIAZgAtADQAMgA5ADUAOQBjAGUAOQBlADQANgBkMHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBBjAOBAi1G2Mhf/4COgICB9CAggOQhtINW1TALGQQJEmOs2NmzkPG+0qIO3q8tJPTAfE+TNZuY2iLXqL1XcnviINHOyf0gTBxFdF5FDJ0ANRv1ftME+zvwdJpZJsbtuuUppN17D0NmsbHRp5gtNHY3rxayibdYzhJcX3ZaPnGvlmNzjVhs4mpb2Utk6Yq2uyKf6wUfAMxjALYADvvROs6NDqTB1HfCYAu/K3OQ7qd8r3jI4l37/1GbJCL2mn9WxKPOxiAqq0ptS4GNE3mGkZHG57KXd/kA9shGs6vJjlZ4GwoxhmKsxQXaKC0F5UwmKbLa/gJl5DE4rQLkPn41VxXZsOEnVZHuo25Ewff7EU7GefOUkny5d3058zpcwiqjpa/L6pt2RIKJbcrTHJwukWx9t8rrlnksdQsiMnzireJlvIaJAWN6KHL0D5eXhj/iFTcZaHKUWgpfrJB3Qqep5G6X4lzK0Dn/mbDOaE/DlrnNIiCBttfeeFCb7HCJN/Xw6QMJ04C3Nj3GvV5BF1prlcIYqkXhJfSvf5DNVr4IesLwR/XQHSRUVa41YpurxIJoTzHZtEW6v/ZQUzMT88+rr+oFJ6rkKY9tKz6Xc/WR2WEIBfzGtW24M08o7rsaJqieiNuzyBzRdsSPmguRny33ErYe+wX3XcSU7DSlkIdyD1ipCZ4l4NYdkAL5Iv/k6b7GLcgFUU5RYRGVW/UDnVEjYQiEuN+7Ltj16b9EnpE25F4WVojTDRdOztkTNu092ngy0nzsqVsts39Siz0QYVu1e8nxJKubonJmDoax/JiPhKxMkJVUurDfr7wvjWsGOg4MoLUxk0tEi2xCZrO7VUfV8UcyCZEdciP80jscRJU6KCbFpEYVBtU6fI3kTv0FGTUQgIeQTJATWT3gV/Qf8Gr7fFX62qvYP3WYcwA9Wefupou/EoFegBBcSAIvbpozu6u4MUubfJAaL/wOjmLaNkAMtkpAEFLm9f+/w0Zsa5CTzuEV9oHFf/p0Aw/5AJEee2k9URQfq9eY6zhyHIKVLrOegZkF/08mAZ13l/8qO6gFnSqNHRQUVaGEHASrQuiU9HlEw6zxNzMpAUFZsQt2CeNP3dP4YlSUTXRUMlkKu4CqzigrpEEUjD8vxnIe9dtloRocWBhFuLITgF4LOC2laON5/tI6oUhne2N7N8s897nPkVfW/EpmDN/W63ysk23KhZNYYUQ7J4EEZHcF2IYJKne1ihUXd63DUiMMDcwHzAHBgUrDgMCGgQUeYqRPIt0WQPH48p2SAXvvkXd4i8EFGM2FM6vGAV1WB2l8bCGcXbSJ7D/","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb","managed":true,"attributes":{"enabled":true,"nbf":1594286419,"exp":1625823019,"created":1594287020,"updated":1594287020,"recoveryLevel":"Recoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c159a9d73ae94574ac8a559c032d75fb"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3972'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000;includeSubDomains
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-ms-keyvault-network-info:
- - conn_type=Ipv4;addr=167.220.255.61;act_addr_fam=InterNetwork;
- x-ms-keyvault-region:
- - westus
- x-ms-keyvault-service-version:
- - 1.1.8.0
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2020-06-01
- response:
- body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2626'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:41:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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":"09/08/2020
+ 20:27:46","ResourceManagerId":"4d6c29fe-02fc-45b5-a10f-9fc2f396466b"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '486'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:06 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 certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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/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-4659502004092020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault465950200409","name":"KeyVault465950200409","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo-5630141306092020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault563014130609","name":"KeyVault563014130609","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demo-8824072008092020-paasv2/providers/Microsoft.KeyVault/vaults/KeyVault882407200809","name":"KeyVault882407200809","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/rmsfe2etest30903231702/providers/Microsoft.KeyVault/vaults/rmsfe2etest30903231702","name":"rmsfe2etest30903231702","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30904103946/providers/Microsoft.KeyVault/vaults/rmsfe2etest30904103946","name":"rmsfe2etest30904103946","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30904224522/providers/Microsoft.KeyVault/vaults/rmsfe2etest30904224522","name":"rmsfe2etest30904224522","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30905104339/providers/Microsoft.KeyVault/vaults/rmsfe2etest30905104339","name":"rmsfe2etest30905104339","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30905232237/providers/Microsoft.KeyVault/vaults/rmsfe2etest30905232237","name":"rmsfe2etest30905232237","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30906103857/providers/Microsoft.KeyVault/vaults/rmsfe2etest30906103857","name":"rmsfe2etest30906103857","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30906223825/providers/Microsoft.KeyVault/vaults/rmsfe2etest30906223825","name":"rmsfe2etest30906223825","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30907104128/providers/Microsoft.KeyVault/vaults/rmsfe2etest30907104128","name":"rmsfe2etest30907104128","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30907223806/providers/Microsoft.KeyVault/vaults/rmsfe2etest30907223806","name":"rmsfe2etest30907223806","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest30908104024/providers/Microsoft.KeyVault/vaults/rmsfe2etest30908104024","name":"rmsfe2etest30908104024","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40903231715/providers/Microsoft.KeyVault/vaults/rmsfe2etest40903231715","name":"rmsfe2etest40903231715","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40904104049/providers/Microsoft.KeyVault/vaults/rmsfe2etest40904104049","name":"rmsfe2etest40904104049","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40904224546/providers/Microsoft.KeyVault/vaults/rmsfe2etest40904224546","name":"rmsfe2etest40904224546","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40905104328/providers/Microsoft.KeyVault/vaults/rmsfe2etest40905104328","name":"rmsfe2etest40905104328","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40905231107/providers/Microsoft.KeyVault/vaults/rmsfe2etest40905231107","name":"rmsfe2etest40905231107","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40906223856/providers/Microsoft.KeyVault/vaults/rmsfe2etest40906223856","name":"rmsfe2etest40906223856","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40907104114/providers/Microsoft.KeyVault/vaults/rmsfe2etest40907104114","name":"rmsfe2etest40907104114","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40907223757/providers/Microsoft.KeyVault/vaults/rmsfe2etest40907223757","name":"rmsfe2etest40907223757","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rmsfe2etest40908104551/providers/Microsoft.KeyVault/vaults/rmsfe2etest40908104551","name":"rmsfe2etest40908104551","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6381'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-keyvault/2.2.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2019-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1192'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:17 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.31.0
+ 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.9 msrest_azure/0.6.3 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/ec36305784064c3185ff24acde44c685?api-version=7.0
+ response:
+ body:
+ string: '{"value":"MIIKRAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAh5YixkgMLZEQICB9AEggTQiILFKXmLLLhQSeJ9kwfy+Wpv78+a3zIwtiiozF+UMHaygqW34SeDny4BbC/ycx7GmnDmRnrLRtOM8+XmcPgWY089nxmbQDHcMO93iGwvz9eGtZxv9nnS6+neriTZnHGJDtvqVwimODB+SnqDxkJZhyb8R4qXRJWyZxRKP5d3ZAKdIIdr/PGW4Blo8LHWrezPv+6PfKJbxF4qLRLZVpyR6qXNNNV7L/Ak/z9s1X25CI22qa4ktVVoOZthDbPVQZW1QrQXbt5L2lb/b5EqZnMdWshxavmCBAp7cKnJsx7PKH+GhrsKAHbi5fKeBrHTxZhxdZJRNFBUebTfiaP/ZMSmkxmp1NEl08wDO9lGDadvhbhkry2s9R//BXRFDSwEU1HrdH0hI7u6mFVB0NFr7GouhKaYra+QuEPnyi7uc3Hzwk3/taLIoIrU0fP5l07AXpQ8828lZzhsnTv6jAJOq4j88j3ALZZeRY9x973KDSfApL8MTPEyYXEPx+jbOJoHpzd3vOj/FaRrgVtKFE4RQYiqpDdWvIlTeqOwhPmkeplHSATuVefJ0d+RbtvdlWfq8k/iaNmZia5Q30XeLWw/jgIB6gpaxmQzvcGlNhTbV6n5OrrquPJHmPZC/ExBbWwSlgFMCXAlNyft3BsuRY74XEaf0CvzXFeqS1WFWeMsmXnkkd0cbf9TFUqFxKdwVR2qwT0LZ3pf8Ihk7tNv+5C1dfR1bmxwp64rgMp5ABTlJ8rrbD5c/rFsYg0FlI+pV9rOwZStXGcU4bjJYcEqJHigI5XK/iL3zRdg2g0rqsS9rTYtL9lkR9lyM7pn6oHQR3Zn/TO8rCbKYbHuaxA93S8p3iCYEgzECHcRIg9mt3fkWkUn5FFOeOeBNA8hS6sYX4pYPhQTa9ef+8HhDQzgDzAG2zZHaY00fltOMrx1z7zPuVinaOfuxfwAN3YxMGCXekXbHs+noYTiLAUi1AjusHKpJeoqwLeYSzr9KHX2aNfFzwn3qilAS8+jSoAScibT1FjszS2ZvnNtyMussefzt/1pI05mFguE1ZmLTQGz9n3pq8wDE22uNpvykrVzamkc6xJ4qnyy8ZVf0Dy+dUthNxPKgk380P6WSdktZ8F/Ebm2LkDl9ufa9Sgj+Ov6+KDvWFPx8B5YGmarSaAdcQPmTCQ2J0uIbbE6JNuPxrTljtMJ0TztZn9nmN9q0qRbZzj2ihsqu743RQ2IIZOZprJ84k+qVatAGA8PWlf3pMqLY6QrxNojIMKNWDRZL9pDDSTMaaMRgD51hUcHzarckCJTguTGAoAJanwOsR04xMhEsSuXKobMJN0nQatauC4sCm5Yp0pipjrV9YJ/noVYkgYYx5EqCGz7jb7ajlKn2C/AncJCwzHv6J3HkLi9sv73hDi2InCray9eWIs1IyfRRNBaUrYWXtFmgs2nJmF0rhH2/xFnirN/57Qu3kujMTvLrTaih+XabJp/LtmxhENZMZUZlzokLWXeBT2iFRXvB+/2U4efNtcU853kT1w2VXuaLCHmZrNouaGoVwVHuIhkqDdhLtauOfqIh6bD6yrHroTHRorD58Q5cTODojDHQUHRFB5IQE2UsKuf21/lMeRuuehJ0NRLZvIms5xzl+NJGNz+LSnq18xW4nAxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSAAyADkAMgA4ADgAOQA5ADcALQBmAGQAZQBmAC0ANABkAGEANQAtADkANwBjADkALQA0AGEAZgA3ADAAOABjAGQAYQBiADgAZDB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQYwDgQITVoFqIYKTGQCAgfQgIIDkKlu6W4oB2F2FYht1jkEh2ric3pNsbzurEkD8hEaFbeJqGXxbCHfNMxfXri+KCAD6YHif5vzFjVZ+w6OV7FuYDLb96DaNAtQWTCwH+d3WHvdClNRTukg6YxfIx0ioakLexc+we9IFADRJtmUW+1tVL65s6gD17g0tkHwPs2ImffrLkn7AKRcYEPYja+JoqLh/GyEsgIzWH0uYc6BfIwd15WD0kObCM8thH2GH8ujNpcdklcVuE4xrbg5WPA6EN+vtAsfU+HOjYM/rDrRkKnlmP0oKOcPOjE7WgA9DIve5aaFOWYUMTyfQr8wBm0oXv6PQlif5JENnV44sQ50EtAO48jmrCBinXIEqiP1+FCFRJE6NtwpMj3bMKd94V3Lvw5tO1CDy0RhaoChcUaTWviMSE5ZRFnqljzmzX/w2Uej6icjHDKnLhEyF2rhhmP4ZqHrufHzFp4QlbMhl8vyOAJ7gsy/zcrN7/r7qG0LfaMxNAaZMmeko0/aMPLt8pUBupz8Bic5M1EwjIETOQUV1Z175ONyATGWeGM5JpAv0+zqE+R3MnQ/dwMhh9QeBFQ5wEKzviIPzDvDWggJ1RSg64qhvy8HTR/jcC5htHF7UiFs4KmioDu2w/Nff6sWc0GALMiXuyVLWYaYKYn+X1ddqncRwqrOhEB82bPu7FzhoK/49mzFAi7HK/4Cic0by1pgNHSJmDSsX0h6aGvRIy1OTGnVTPTfY5aSGErTxyfHkwvAaMMVuuBQDN4ysoWaTJFKSVJV1cdmmkLDDz2hjebgUlqGu+TGxJFwz7r5SFZVbuiAZNuaMFjk04O26xsOj8bBvpvSl1SiwXNMlgQ8GI0B0+UD2Ow5unt4mhA2R95xSblgWCJHWjbHDW/meXd+sgNCkU4D/d4rmKOekdyo2Lt5HnlWoa0vN/lELHco9boXIt0Fw8sC/kZWO0r7HwEfGHHvq/YuroQumysxHbISAesqDDL6zrsOlCXEYTsTW0KgPikPSujZLYj9fkqufKg5pTBOrJIQBKRJv8ePpcYQIdRowqmlmdZQrGUVw85G153of0+zjzCFJxguma5WNpNWF9tMj3BKVbF/OefX3c96ZgahJJpS70Olv35rB7twNonTGcNS4Aag5myysjR5YNcvwZcUS2xDw3aqUOBvtNOpaFPiknzEjPZyp8MuZJ2tTknvKfOLZvUsvaRWVSSdR2eXEaH2lvbX7jA3MB8wBwYFKw4DAhoEFMj1viYMDFsRfgSRvcZn90AnxKwUBBTWJTs0VLTN8kD0QlryJ2k+yFzihQ==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685","managed":true,"attributes":{"enabled":true,"nbf":1599596330,"exp":1631132930,"created":1599596931,"updated":1599596931,"recoveryLevel":"Recoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/ec36305784064c3185ff24acde44c685"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3964'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000;includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-keyvault-network-info:
+ - conn_type=Ipv4;addr=131.107.147.229;act_addr_fam=InterNetwork;
+ x-ms-keyvault-region:
+ - westus
+ x-ms-keyvault-service-version:
+ - 1.1.44.0
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2020-06-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
\"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n
@@ -3183,7 +3186,7 @@ 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/c159a9d73ae94574ac8a559c032d75fb\",\r\n
+ \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685\",\r\n
\ \"certificateStore\": \"My\"\r\n }\r\n
\ ]\r\n }\r\n ]\r\n },\r\n
\ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\":
@@ -3199,69 +3202,74 @@ 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/53acd080-5ba1-40c9-9b59-a76db48814b3\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"381E95079C590B0CF519EFEA25835F832C7B01C4\",\"x509StoreName\":\"My\"}}\r\n
+ \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"8936E458F4737D21B8DC2557CE5484099BE440D9\",\"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\":\"33ivnktdq447y3\"}\r\n
- \ }\r\n }\r\n ]\r\n }\r\n },\r\n
- \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
+ {\"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\":\"maqg2dgtxhihu3\"}\r\n
+ \ }\r\n },\r\n {\r\n \"name\":
+ \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\":
+ {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\":
+ \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n
+ \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\":
+ {}\r\n }\r\n }\r\n ]\r\n }\r\n
+ \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"657271a4-b004-4338-a9a4-a4672a90a44b\"\r\n }\r\n }\r\n ]\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '5558'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGetVMScaleSet3Min;175,Microsoft.Compute/HighCostGetVMScaleSet30Min;885
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2020-06-01
- response:
- body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\":
+ \"7ddf994d-ea99-4ae2-b6ce-cd9e144891e2\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5952'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;897
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2020-06-01
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
\"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n
@@ -3276,7 +3284,7 @@ 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/c159a9d73ae94574ac8a559c032d75fb\",\r\n
+ \ \"certificateUrl\": \"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/ec36305784064c3185ff24acde44c685\",\r\n
\ \"certificateStore\": \"My\"\r\n }\r\n
\ ]\r\n }\r\n ]\r\n },\r\n
\ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\":
@@ -3292,83 +3300,88 @@ 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/53acd080-5ba1-40c9-9b59-a76db48814b3\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"381E95079C590B0CF519EFEA25835F832C7B01C4\",\"x509StoreName\":\"My\"}}\r\n
+ \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"8936E458F4737D21B8DC2557CE5484099BE440D9\",\"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\":\"33ivnktdq447y3\"}\r\n
- \ }\r\n }\r\n ]\r\n }\r\n },\r\n
- \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
+ {\"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\":\"maqg2dgtxhihu3\"}\r\n
+ \ }\r\n },\r\n {\r\n \"name\":
+ \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\":
+ {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\":
+ \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n
+ \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\":
+ {}\r\n }\r\n }\r\n ]\r\n }\r\n
+ \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"657271a4-b004-4338-a9a4-a4672a90a44b\"\r\n }\r\n }\r\n ]\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '5558'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 09 Jul 2020 09:43:11 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGetVMScaleSet3Min;174,Microsoft.Compute/HighCostGetVMScaleSet30Min;884
- status:
- code: 200
- message: OK
- - request:
- body: '{"properties": {"certificate": {"thumbprint": "381E95079C590B0CF519EFEA25835F832C7B01C4",
- "thumbprintSecondary": "381E95079C590B0CF519EFEA25835F832C7B01C4", "x509StoreName":
+ \"7ddf994d-ea99-4ae2-b6ce-cd9e144891e2\"\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5952'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 20:41:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;896
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"certificate": {"thumbprint": "8936E458F4737D21B8DC2557CE5484099BE440D9",
+ "thumbprintSecondary": "8936E458F4737D21B8DC2557CE5484099BE440D9", "x509StoreName":
"My"}}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- Content-Length:
- - '181'
- Content-Type:
- - application/json; charset=utf-8
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- 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-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '181'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178371\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241886\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"UpdatingUserConfiguration\",\r\n \"managementEndpoint\":
\"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\":
- \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -3382,1297 +3395,1297 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- cache-control:
- - no-cache
- content-length:
- - '2516'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:43:12 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
- status:
- code: 202
- message: Accepted
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2555'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:41:21 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\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:
- - Thu, 09 Jul 2020 09:44:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:42:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\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:
- - Thu, 09 Jul 2020 09:44:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:42:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\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:
- - Thu, 09 Jul 2020 09:45:14 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:43:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\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:
- - Thu, 09 Jul 2020 09:45: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3212'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:43:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3212'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:46:15 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3212'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:44:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.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-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3212'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:46: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.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-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3360'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:44:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.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-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3360'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:47:15 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.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-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3360'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:45: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 certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3360'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:47: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:45:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3356'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:48:16 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:46:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.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-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3356'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:48: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.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-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:46:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.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-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3356'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:49:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.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-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:47:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3356'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:49: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3362'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:47:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3362'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:50:18 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3362'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:48:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3362'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:50: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:48:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3358'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:51:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:49:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3358'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:51: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:49:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3358'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:52:20 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:50:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3358'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:52:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3336'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:50:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3336'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:53: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 certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3336'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:51:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3336'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:53:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:51:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3334'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:54:22 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:52:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3334'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:54:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:44:56.2346107Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:52:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:42:41.0041116Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3334'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:55:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n
- \ \"name\": \"f1d7589c-5372-4ac1-b251-0189490ed48b\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-09T09:43:13.5058934Z\",\r\n \"endTime\": \"2020-07-09T09:55:53.0952707Z\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:53:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/8e108421-2589-4b99-a589-ed60a36236ad\",\r\n
+ \ \"name\": \"8e108421-2589-4b99-a589-ed60a36236ad\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-08T20:41:21.7920458Z\",\r\n \"endTime\": \"2020-09-08T20:53:38.4683424Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '366'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:55:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate add
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --secret-identifier
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:53:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --secret-identifier
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178371\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241886\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
- \ \"thumbprintSecondary\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
+ \ \"thumbprintSecondary\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4686,74 +4699,74 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2571'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:55:53 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2610'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:53:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178371\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241886\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
- \ \"thumbprintSecondary\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
+ \ \"thumbprintSecondary\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4767,74 +4780,74 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2571'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:55:55 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2610'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:53:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178371\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241886\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
- \ \"thumbprintSecondary\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
+ \ \"thumbprintSecondary\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4848,80 +4861,80 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2571'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:55: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: '{"properties": {"certificate": {"thumbprint": "381E95079C590B0CF519EFEA25835F832C7B01C4",
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2610'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:53: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: '{"properties": {"certificate": {"thumbprint": "8936E458F4737D21B8DC2557CE5484099BE440D9",
"x509StoreName": "My"}}}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- Content-Length:
- - '114'
- Content-Type:
- - application/json; charset=utf-8
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- 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-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '114'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ 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-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178372\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241887\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"UpdatingUserConfiguration\",\r\n \"managementEndpoint\":
\"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\":
- \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
- \ \"thumbprintSecondary\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
+ \ \"thumbprintSecondary\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -4935,1347 +4948,1347 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- cache-control:
- - no-cache
- content-length:
- - '2590'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:55:56 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
- status:
- code: 202
- message: Accepted
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2629'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:53:55 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '352'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:56:58 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:54:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '352'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:57:28 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:55:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '352'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:57:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"Created\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:55:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"Created\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '352'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:58:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '353'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:56:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3211'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:58:59 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3212'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:56:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3211'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 09:59:29 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3212'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:57:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3359'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:00:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3360'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:57:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3359'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:00:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3360'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:58:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3355'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:01:00 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:58:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3355'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:01:30 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:59:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3355'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:02: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 certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 20:59:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3355'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:02:32 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3356'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:00:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3361'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10: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 cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3362'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:00:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3361'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:03:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3362'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:01:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3357'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:04:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:01: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 certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3357'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:04:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:02:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3357'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:05:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:02: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 certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3357'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:05:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3358'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:03:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3335'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:06:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3336'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:03:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3335'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:06:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3336'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:04:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3333'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:07:05 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:04: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 certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3333'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:07:35 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:05:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3333'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10: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 cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.417.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-07-09T09:57:56.0727531Z\\\"}\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:05: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 certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"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\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"7.1.456.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2020-09-08T20:55:40.9654523Z\\\"}\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
\ \"percentComplete\": 0.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3333'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10: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 cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n
- \ \"name\": \"c0195b32-8ef2-4caa-b236-bae267e6bf3d\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"startTime\": \"2020-07-09T09:55:57.596116Z\",\r\n \"endTime\": \"2020-07-09T10:08:53.2566653Z\",\r\n
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3334'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:06:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/44aa6924-8784-4f21-981f-53422304bcc3\",\r\n
+ \ \"name\": \"44aa6924-8784-4f21-981f-53422304bcc3\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"startTime\": \"2020-09-08T20:53:55.8445849Z\",\r\n \"endTime\": \"2020-09-08T21:06:38.5743638Z\",\r\n
\ \"percentComplete\": 100.0\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '365'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10: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 cluster certificate remove
- Connection:
- - keep-alive
- ParameterSetName:
- - --resource-group --cluster-name --thumbprint
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '366'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21: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 certificate remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --cluster-name --thumbprint
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178372\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241887\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6289,73 +6302,73 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2497'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:09:08 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
- - request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sf cluster show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -c
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.4.0
- Azure-SDK-For-Python AZURECLI/2.8.0
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2019-03-01
- response:
- body:
- string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2536'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:06:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005?api-version=2020-03-01
+ response:
+ body:
+ string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\":
\"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000005\",\r\n
- \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637298838956178372\\\"\",\r\n
+ \ \"name\": \"sfrp-cli-000005\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"637351937688241887\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\":
- \"53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n \"clusterCodeVersion\": \"7.1.417.9590\",\r\n
+ \"63765f2b-328f-424b-9b3a-01efcba36040\",\r\n \"clusterCodeVersion\": \"7.1.456.9590\",\r\n
\ \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000005.westus.cloudapp.azure.com:19080\",\r\n
- \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/53acd080-5ba1-40c9-9b59-a76db48814b3\",\r\n
- \ \"certificate\": {\r\n \"thumbprint\": \"381E95079C590B0CF519EFEA25835F832C7B01C4\",\r\n
+ \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/63765f2b-328f-424b-9b3a-01efcba36040\",\r\n
+ \ \"certificate\": {\r\n \"thumbprint\": \"8936E458F4737D21B8DC2557CE5484099BE440D9\",\r\n
\ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\":
[],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\":
[\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\":
@@ -6369,41 +6382,41 @@ interactions:
\ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\":
65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\":
\"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\":
- {\r\n \"storageAccountName\": \"sflogs33ivnktdq447y2\",\r\n \"primaryAccessKey\":
+ {\r\n \"storageAccountName\": \"sflogsmaqg2dgtxhihu2\",\r\n \"primaryAccessKey\":
\"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\":
- \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs33ivnktdq447y2.blob.core.windows.net/\",\r\n
- \ \"queueEndpoint\": \"https://sflogs33ivnktdq447y2.queue.core.windows.net/\",\r\n
- \ \"tableEndpoint\": \"https://sflogs33ivnktdq447y2.table.core.windows.net/\"\r\n
- \ },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n
- \ \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n
- \ {\r\n \"codeVersion\": \"7.1.417.9590\",\r\n \"supportExpiryUtc\":
- \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n
- \ }\r\n ]\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2497'
- content-type:
- - application/json
- date:
- - Thu, 09 Jul 2020 10:09:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
+ \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsmaqg2dgtxhihu2.blob.core.windows.net/\",\r\n
+ \ \"queueEndpoint\": \"https://sflogsmaqg2dgtxhihu2.queue.core.windows.net/\",\r\n
+ \ \"tableEndpoint\": \"https://sflogsmaqg2dgtxhihu2.table.core.windows.net/\",\r\n
+ \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\":
+ \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n
+ \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\":
+ \"7.1.456.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n
+ \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2536'
+ content-type:
+ - application/json
+ date:
+ - Tue, 08 Sep 2020 21:06: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
version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml
new file mode 100644
index 00000000000..df6e9028cc8
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_node_type_operation.yaml
@@ -0,0 +1,9240 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:54 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:54 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:54 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:54 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:55 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:54 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:55 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:56 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:56 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:55 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:56 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.0.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-06-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-09-09T03:14:53Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "southcentralus", "properties": {"dnsName": "sfrp-cli-000002",
+ "clientConnectionPort": 19000, "httpGatewayConnectionPort": 19080, "adminUserName":
+ "vmadmin", "adminPassword": "Pass@000003", "clients": [{"isAdmin": true, "thumbprint":
+ "123BDACDCDFB2C7B250192C6078E47D1E1DB119B"}]}, "sku": {"name": "Standard"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '329'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b2c73fcc-1a30-466a-8403-768b2d71f540\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\":
+ 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n
+ \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n
+ \ ],\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '865'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:14:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ 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 managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:15:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:15:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:16:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:16:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:17:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 51.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:17:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/80040005-5294-40ca-95ca-683cf47f2740?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"80040005-5294-40ca-95ca-683cf47f2740\",\r\n \"startTime\":
+ \"2020-09-09T03:14:58.4057374Z\",\r\n \"endTime\": \"2020-09-09T03:18:10.5920005Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:18:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -l --cert-thumbprint --cert-is-admin --admin-password --sku
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b2c73fcc-1a30-466a-8403-768b2d71f540\",\r\n \"clusterState\":
+ \"WaitingForNodes\",\r\n \"clusterUpgradeCadence\": \"Wave0\",\r\n \"adminUserName\":
+ \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n
+ \ \"clusterCertificateThumbprint\": \"E387BCB4B8B3C99781A43EEEB5427198650E109A\",\r\n
+ \ \"clientConnectionPort\": 19000,\r\n \"httpGatewayConnectionPort\":
+ 19080,\r\n \"clients\": [\r\n {\r\n \"isAdmin\": true,\r\n
+ \ \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n }\r\n
+ \ ],\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1062'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:18:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"isPrimary": true, "vmInstanceCount": 5, "dataDiskSizeGB":
+ 100, "vmSize": "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer",
+ "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion":
+ "latest"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '245'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '763'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:18:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ 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 managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:19:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:19:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:20:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:20:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:21:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:21:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:22:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:22:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:23:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:23:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:24:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:24:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/b5500005-33bc-4a12-85d2-e42c086a2aeb?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"b5500005-33bc-4a12-85d2-e42c086a2aeb\",\r\n \"startTime\":
+ \"2020-09-09T03:18:30.9361709Z\",\r\n \"endTime\": \"2020-09-09T03:25:02.7921758Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:25:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count --primary
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/pnt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": true,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '764'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:25:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n
+ \ \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\":
+ {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n
+ \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n
+ \ \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n
+ \ \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\":
+ {},\r\n \"capacities\": {}\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '869'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:25:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"isPrimary": false, "vmInstanceCount": 6, "dataDiskSizeGB":
+ 100, "vmSize": "Standard_D2", "vmImagePublisher": "MicrosoftWindowsServer",
+ "vmImageOffer": "WindowsServer", "vmImageSku": "2019-Datacenter", "vmImageVersion":
+ "latest"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '246'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Creating\",\r\n \"isPrimary\": false,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '764'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:25:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ 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 managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:25:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:26:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:26:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:27:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:27:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:28:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:28:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:29:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:29:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:30:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:30:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:31:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:31:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:32:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 15.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:32:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:33:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:33:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:34:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:34:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:35:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:35:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:36:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:36:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:37:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:37:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:38:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:38:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:39:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:39:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:40:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:40:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:41:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:41:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:42:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:42:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:43:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:43:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:44:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 20.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:44:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:45:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:45:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:46:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 30.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:46:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:47:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:47:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:48:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:48:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:49:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:49:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:50:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:50:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:51:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:51:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:52:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:52:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 70.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:53:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1cc20005-47e9-4cc4-920a-291f92371073?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1cc20005-47e9-4cc4-920a-291f92371073\",\r\n \"startTime\":
+ \"2020-09-09T03:25:04.4675744Z\",\r\n \"endTime\": \"2020-09-09T03:53:35.8321069Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:53:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --instance-count
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"isPrimary\": false,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '765'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:53:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n
+ \ \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\":
+ {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n
+ \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n
+ \ \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n
+ \ \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\":
+ {},\r\n \"capacities\": {}\r\n }\r\n },\r\n {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n
+ \ \"location\": \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\":
+ {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"isPrimary\": false,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n
+ \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n
+ \ \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n
+ \ \"vmInstanceCount\": 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\":
+ {},\r\n \"capacities\": {}\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1717'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:53:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"nodes": ["snt_0", "snt_1"], "force": false}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '45'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt/restart?api-version=2020-01-01-preview
+ response:
+ body:
+ string: '{}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '2'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:53:42 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:54:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:54:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:55:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:55:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:56:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:56:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:57:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 72.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:57:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"a55c0005-fa0d-472f-94f4-82213fa589f5\",\r\n \"startTime\":
+ \"2020-09-09T03:53:42.8500833Z\",\r\n \"endTime\": \"2020-09-09T03:58:13.6646274Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:58:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node restart
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/a55c0005-fa0d-472f-94f4-82213fa589f5?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ date:
+ - Wed, 09 Sep 2020 03:58:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: '{"nodes": ["snt_1"], "force": false}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '36'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt/deleteNode?api-version=2020-01-01-preview
+ response:
+ body:
+ string: '{}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '2'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:58:16 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\":
+ \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:58:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\":
+ \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:59:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\":
+ \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 03:59:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"1fff0005-d947-44fb-a99a-5408dcc9b899\",\r\n \"startTime\":
+ \"2020-09-09T03:58:16.5553609Z\",\r\n \"endTime\": \"2020-09-09T04:00:17.1666374Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:00:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/1fff0005-d947-44fb-a99a-5408dcc9b899?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ date:
+ - Wed, 09 Sep 2020 04:00:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: '{"nodes": ["snt_3"], "force": false}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '36'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt/reimage?api-version=2020-01-01-preview
+ response:
+ body:
+ string: '{}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '2'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:00:17 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:00:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:01:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:01:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:02:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:02:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:03:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:03:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:04:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:04:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:05:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:05:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 5.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '281'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:06:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:06:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 50.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:07:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"2d770005-27e6-4cf5-b1ea-47a9b18ef9e3\",\r\n \"startTime\":
+ \"2020-09-09T04:00:18.1822833Z\",\r\n \"endTime\": \"2020-09-09T04:07:49.2568209Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:07:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type node reimage
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n --node-name
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/2d770005-27e6-4cf5-b1ea-47a9b18ef9e3?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ date:
+ - Wed, 09 Sep 2020 04:07:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/snt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"snt\",\r\n \"tags\": {},\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Deleting\",\r\n \"isPrimary\": false,\r\n
+ \ \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n \"vmImageOffer\":
+ \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n \"vmImageVersion\":
+ \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n \"vmInstanceCount\":
+ 6,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\": {},\r\n
+ \ \"capacities\": {}\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '764'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:07:51 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:08:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:08:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:09:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:09:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:10:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:10:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:11:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:11:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:12:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:12:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:13:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:13:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:14:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:14:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:15:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:15:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:16:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:16:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:17:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:17:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:18:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:18:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:19:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:19:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:20:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:20:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:21:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 0.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '280'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:21:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/26880005-d357-4301-a481-aaf8c0524e20?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"26880005-d357-4301-a481-aaf8c0524e20\",\r\n \"startTime\":
+ \"2020-09-09T04:07:52.397491Z\",\r\n \"endTime\": \"2020-09-09T04:22:23.7901445Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '293'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:22:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c -n
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes/snt?api-version=2020-01-01-preview
+ response:
+ body:
+ string: '{"error":{"code":"NotFound","message":"GetEntityFromTable: the NodeTypeData
+ b2c73fcc-1a30-466a-8403-768b2d71f540_snt could not be found."}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '139'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:22:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-node-type list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodeTypes?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002/nodetypes/pnt\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters/nodetypes\",\r\n
+ \ \"location\": \"southcentralus\",\r\n \"name\": \"pnt\",\r\n \"tags\":
+ {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"isPrimary\": true,\r\n \"vmImagePublisher\": \"MicrosoftWindowsServer\",\r\n
+ \ \"vmImageOffer\": \"WindowsServer\",\r\n \"vmImageSku\": \"2019-Datacenter\",\r\n
+ \ \"vmImageVersion\": \"latest\",\r\n \"vmSize\": \"Standard_D2\",\r\n
+ \ \"vmInstanceCount\": 5,\r\n \"dataDiskSizeGB\": 100,\r\n \"placementProperties\":
+ {},\r\n \"capacities\": {}\r\n }\r\n }\r\n ]\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '869'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:22:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002\",\r\n
+ \ \"type\": \"Microsoft.ServiceFabric/managedclusters\",\r\n \"location\":
+ \"southcentralus\",\r\n \"name\": \"sfrp-cli-000002\",\r\n \"tags\": {},\r\n
+ \ \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n
+ \ \"clusterId\": \"b2c73fcc-1a30-466a-8403-768b2d71f540\",\r\n \"clusterUpgradeCadence\":
+ \"Wave0\",\r\n \"adminUserName\": \"vmadmin\",\r\n \"dnsName\": \"sfrp-cli-000002\",\r\n
+ \ \"fqdn\": \"sfrp-cli-000002.southcentralus.cloudapp.azure.com\",\r\n \"clusterCertificateThumbprint\":
+ \"E387BCB4B8B3C99781A43EEEB5427198650E109A\",\r\n \"clientConnectionPort\":
+ 19000,\r\n \"httpGatewayConnectionPort\": 19080,\r\n \"clients\": [\r\n
+ \ {\r\n \"isAdmin\": true,\r\n \"thumbprint\": \"123BDACDCDFB2C7B250192C6078E47D1E1DB119B\"\r\n
+ \ }\r\n ],\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ cache-control:
+ - no-cache
+ content-length:
+ - '1021'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:22:27 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperationresults/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:22:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:23:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:23:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:24:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:24:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:25:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:25:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:26:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:26:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:27:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:27:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:28:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:28:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:29:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n
+ \ \"percentComplete\": 40.0,\r\n \"status\": \"Created\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '282'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:30:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/managedclusteroperations/fc440005-47bb-4932-9221-d20beb06f2e2?api-version=2020-01-01-preview&Experiment=local
+ response:
+ body:
+ string: "{\r\n \"name\": \"fc440005-47bb-4932-9221-d20beb06f2e2\",\r\n \"startTime\":
+ \"2020-09-09T04:22:28.3533572Z\",\r\n \"endTime\": \"2020-09-09T04:30:29.7738818Z\",\r\n
+ \ \"percentComplete\": 100.0,\r\n \"status\": \"Succeeded\",\r\n \"error\":
+ {\r\n \"code\": \"OperationFailed\",\r\n \"message\": \"\",\r\n \"details\":
+ []\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '294'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 09 Sep 2020 04:30:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sf managed-cluster show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -c
+ User-Agent:
+ - python/3.7.1 (Windows-10-10.0.18362-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-servicefabric/0.5.0
+ Azure-SDK-For-Python AZURECLI/2.9.1
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/managedClusters/sfrp-cli-000002?api-version=2020-01-01-preview
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Wed, 09 Sep 2020 04:30:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ 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/test_sf_managed_cluster.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_managed_cluster.py
new file mode 100644
index 00000000000..d628a2655de
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_managed_cluster.py
@@ -0,0 +1,159 @@
+# --------------------------------------------------------------------------------------------
+# 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 azure.cli.command_modules.servicefabric.tests.latest.test_util import (
+ _create_keyvault,
+ _add_selfsigned_cert_to_keyvault
+)
+from azure.cli.core.util import CLIError
+from azure.cli.testsdk import ScenarioTest, LiveScenarioTest, ResourceGroupPreparer
+from azure.mgmt.servicefabric.models import ErrorModelException
+
+
+class ServiceFabricManagedClustersTests(ScenarioTest):
+ @ResourceGroupPreparer()
+ def test_basic_cluster(self):
+ self.kwargs.update({
+ 'cert_tp': '123BDACDCDFB2C7B250192C6078E47D1E1DB119B',
+ 'loc': 'southcentralus',
+ 'cluster_name': self.create_random_name('sfrp-cli-', 24),
+ 'vm_password': self.create_random_name('Pass@', 9)
+ })
+
+ self.cmd('az sf managed-cluster create -g {rg} -c {cluster_name} -l {loc} --cert-thumbprint {cert_tp} --cert-is-admin --admin-password {vm_password}',
+ checks=[self.check('provisioningState', 'Succeeded'),
+ self.check('clusterState', 'WaitingForNodes')])
+
+ self.cmd('az sf managed-node-type create -g {rg} -c {cluster_name} -n pnt --instance-count 5 --primary',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ # 'InvalidParameter - Cluster must have at least one active primary node type'
+ with self.assertRaisesRegexp(ErrorModelException, 'Cluster must have at least one active primary node type'):
+ self.cmd('az sf managed-node-type delete -g {rg} -c {cluster_name} -n pnt')
+
+ self.cmd('az sf managed-cluster show -g {rg} -c {cluster_name}',
+ checks=[self.check('clusterState', 'Deploying')])
+
+ self.cmd('az sf managed-cluster delete -g {rg} -c {cluster_name}')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf managed-cluster show -g {rg} -c {cluster_name}')
+
+ @ResourceGroupPreparer()
+ def test_node_type_operation(self):
+ self.kwargs.update({
+ 'cert_tp': '123BDACDCDFB2C7B250192C6078E47D1E1DB119B',
+ 'loc': 'southcentralus',
+ 'cluster_name': self.create_random_name('sfrp-cli-', 24),
+ 'vm_password': self.create_random_name('Pass@', 9)
+ })
+
+ self.cmd('az sf managed-cluster create -g {rg} -c {cluster_name} -l {loc} --cert-thumbprint {cert_tp} --cert-is-admin --admin-password {vm_password} --sku Standard',
+ checks=[self.check('provisioningState', 'Succeeded'),
+ self.check('clusterState', 'WaitingForNodes')])
+
+ self.cmd('az sf managed-node-type create -g {rg} -c {cluster_name} -n pnt --instance-count 5 --primary',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf managed-node-type list -g {rg} -c {cluster_name}',
+ checks=[self.check('length(@)', 1)])
+
+ self.cmd('az sf managed-node-type create -g {rg} -c {cluster_name} -n snt --instance-count 6',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf managed-node-type list -g {rg} -c {cluster_name}',
+ checks=[self.check('length(@)', 2)])
+
+ self.cmd('az sf managed-node-type node restart -g {rg} -c {cluster_name} -n snt --node-name snt_0 snt_1')
+
+ self.cmd('az sf managed-node-type node delete -g {rg} -c {cluster_name} -n snt --node-name snt_1')
+
+ self.cmd('az sf managed-node-type node reimage -g {rg} -c {cluster_name} -n snt --node-name snt_3')
+
+ self.cmd('az sf managed-node-type delete -g {rg} -c {cluster_name} -n snt')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf managed-node-type show -g {rg} -c {cluster_name} -n snt')
+
+ self.cmd('az sf managed-node-type list -g {rg} -c {cluster_name}',
+ checks=[self.check('length(@)', 1)])
+
+ self.cmd('az sf managed-cluster delete -g {rg} -c {cluster_name}')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf managed-cluster show -g {rg} -c {cluster_name}')
+
+ @ResourceGroupPreparer()
+ def test_cert_and_ext(self):
+ self.kwargs.update({
+ 'cert_tp': '123BDACDCDFB2C7B250192C6078E47D1E1DB119B',
+ 'cert_tp2': '123BDACDCDFB2C7B250192C6078E47D1E1DB7777',
+ 'loc': 'southcentralus',
+ 'cluster_name': self.create_random_name('sfrp-cli-', 24),
+ 'vm_password': self.create_random_name('Pass@', 9),
+ 'extName': 'csetest',
+ 'publisher': 'Microsoft.Compute',
+ 'extType': 'BGInfo',
+ 'extVer': '2.1',
+ 'kv_name': self.create_random_name('sfrp-cli-kv-', 24),
+ 'cert_name': self.create_random_name('sfrp-cli-', 24)
+ })
+
+ self.cmd('az sf managed-cluster create -g {rg} -c {cluster_name} -l {loc} --cert-thumbprint {cert_tp} --cert-is-admin --admin-password {vm_password}',
+ checks=[self.check('provisioningState', 'Succeeded'),
+ self.check('clusterState', 'WaitingForNodes')])
+
+ self.cmd('az sf managed-node-type create -g {rg} -c {cluster_name} -n pnt --instance-count 5 --primary',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ # add extension
+ self.cmd('az sf managed-node-type vm-extension add -g {rg} -c {cluster_name} -n pnt '
+ ' --extension-name {extName} --publisher {publisher} --extension-type {extType} --type-handler-version {extVer} --auto-upgrade-minor-version',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf managed-node-type show -g {rg} -c {cluster_name} -n pnt',
+ checks=[self.check('length(vmExtensions)', 1)])
+
+ # add secret
+ kv = _create_keyvault(self, self.kwargs)
+ self.kwargs.update({'kv_id': kv['id']})
+ cert = _add_selfsigned_cert_to_keyvault(self, self.kwargs)
+ cert_secret_id = cert['sid']
+ self.kwargs.update({'cert_secret_id': cert_secret_id})
+
+ self.cmd('az sf managed-node-type vm-secret add -g {rg} -c {cluster_name} -n pnt '
+ ' --source-vault-id {kv_id} --certificate-url {cert_secret_id} --certificate-store my',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf managed-node-type show -g {rg} -c {cluster_name} -n pnt',
+ checks=[self.check('length(vmSecrets)', 1)])
+
+ # add client cert
+ self.cmd('az sf managed-cluster client-certificate add -g {rg} -c {cluster_name} --thumbprint {cert_tp2}',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf managed-cluster show -g {rg} -c {cluster_name}',
+ checks=[self.check('length(clients)', 2)])
+
+ # delete client cert
+ self.cmd('az sf managed-cluster client-certificate delete -g {rg} -c {cluster_name} --thumbprint {cert_tp2}',
+ checks=[self.check('provisioningState', 'Succeeded')])
+
+ self.cmd('az sf managed-cluster show -g {rg} -c {cluster_name}',
+ checks=[self.check('length(clients)', 1)])
+
+ self.cmd('az sf managed-cluster delete -g {rg} -c {cluster_name}')
+
+ # SystemExit 3 'not found'
+ with self.assertRaisesRegexp(SystemExit, '3'):
+ self.cmd('az sf managed-cluster show -g {rg} -c {cluster_name}')
+
+
+if __name__ == '__main__':
+ unittest.main()
diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py
index 63c9b41387c..8417bce746c 100644
--- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py
+++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py
@@ -26,7 +26,8 @@ def _add_selfsigned_cert_to_keyvault(test, kwargs):
def _create_keyvault(test, kwargs):
- test.cmd('keyvault create --resource-group {rg} -n {kv_name} -l {loc} --enabled-for-deployment true --enabled-for-template-deployment true')
+ kv = test.cmd('keyvault create --resource-group {rg} -n {kv_name} -l {loc} --enabled-for-deployment true --enabled-for-template-deployment true').get_output_in_json()
+ return kv
def _create_cluster_with_separate_kv(test, kwargs):
diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt
index fc40c4488cd..b36f1634e3c 100644
--- a/src/azure-cli/requirements.py3.Darwin.txt
+++ b/src/azure-cli/requirements.py3.Darwin.txt
@@ -70,7 +70,7 @@ azure-mgmt-resource==10.2.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.4.1
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.4.0
+azure-mgmt-servicefabric==0.5.0
azure-mgmt-signalr==0.4.0
azure-mgmt-sql==0.20.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 fc40c4488cd..b36f1634e3c 100644
--- a/src/azure-cli/requirements.py3.Linux.txt
+++ b/src/azure-cli/requirements.py3.Linux.txt
@@ -70,7 +70,7 @@ azure-mgmt-resource==10.2.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.4.1
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.4.0
+azure-mgmt-servicefabric==0.5.0
azure-mgmt-signalr==0.4.0
azure-mgmt-sql==0.20.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 99978d6c2ee..96157d91499 100644
--- a/src/azure-cli/requirements.py3.windows.txt
+++ b/src/azure-cli/requirements.py3.windows.txt
@@ -70,7 +70,7 @@ azure-mgmt-resource==10.2.0
azure-mgmt-search==2.1.0
azure-mgmt-security==0.4.1
azure-mgmt-servicebus==0.6.0
-azure-mgmt-servicefabric==0.4.0
+azure-mgmt-servicefabric==0.5.0
azure-mgmt-signalr==0.4.0
azure-mgmt-sql==0.20.0
azure-mgmt-sqlvirtualmachine==0.5.0
diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py
index 18e07a738e8..7df37b63470 100644
--- a/src/azure-cli/setup.py
+++ b/src/azure-cli/setup.py
@@ -113,7 +113,7 @@
'azure-mgmt-search~=2.0',
'azure-mgmt-security~=0.4.1',
'azure-mgmt-servicebus~=0.6.0',
- 'azure-mgmt-servicefabric~=0.4.0',
+ 'azure-mgmt-servicefabric~=0.5.0',
'azure-mgmt-signalr~=0.4.0',
'azure-mgmt-sql~=0.20.0',
'azure-mgmt-sqlvirtualmachine~=0.5.0',